🔧 npm update

This commit is contained in:
2025-04-15 20:50:11 +02:00
parent ce5b9ac0c8
commit 94a90edabd
828 changed files with 256807 additions and 197099 deletions

View File

@@ -1,4 +1,4 @@
import Container from './container.js'
import { ContainerWithChildren } from './container.js'
import Node from './node.js'
declare namespace Declaration {
@@ -63,6 +63,11 @@ declare namespace Declaration {
* ```
*/
declare class Declaration_ extends Node {
parent: ContainerWithChildren | undefined
raws: Declaration.DeclarationRaws
type: 'decl'
/**
* It represents a specificity of the declaration.
*
@@ -77,9 +82,8 @@ declare class Declaration_ extends Node {
* root.first.last.important //=> undefined
* ```
*/
important: boolean
parent: Container | undefined
get important(): boolean
set important(value: boolean)
/**
* The property name for a CSS declaration.
@@ -91,11 +95,9 @@ declare class Declaration_ extends Node {
* decl.prop //=> 'color'
* ```
*/
prop: string
get prop(): string
raws: Declaration.DeclarationRaws
type: 'decl'
set prop(value: string)
/**
* The property value for a CSS declaration.
@@ -114,7 +116,8 @@ declare class Declaration_ extends Node {
* decl.value //=> 'black'
* ```
*/
value: string
get value(): string
set value(value: string)
/**
* It represents a getter that returns `true` if a declaration starts with
@@ -134,13 +137,13 @@ declare class Declaration_ extends Node {
* one.variable //=> true
* ```
*/
variable: boolean
get variable(): boolean
constructor(defaults?: Declaration.DeclarationProps)
assign(overrides: Declaration.DeclarationProps | object): this
clone(overrides?: Partial<Declaration.DeclarationProps>): Declaration
cloneAfter(overrides?: Partial<Declaration.DeclarationProps>): Declaration
cloneBefore(overrides?: Partial<Declaration.DeclarationProps>): Declaration
clone(overrides?: Partial<Declaration.DeclarationProps>): this
cloneAfter(overrides?: Partial<Declaration.DeclarationProps>): this
cloneBefore(overrides?: Partial<Declaration.DeclarationProps>): this
}
declare class Declaration extends Declaration_ {}