🔧 npm update
This commit is contained in:
31
node_modules/postcss/lib/declaration.d.ts
generated
vendored
31
node_modules/postcss/lib/declaration.d.ts
generated
vendored
@@ -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_ {}
|
||||
|
||||
Reference in New Issue
Block a user