Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/postcss/lib/declaration.d.ts
rd565449 r0c6b92a 64 64 */ 65 65 declare class Declaration_ extends Node { 66 parent: ContainerWithChildren | undefined 67 raws: Declaration.DeclarationRaws 68 69 type: 'decl' 70 71 constructor(defaults?: Declaration.DeclarationProps) 72 assign(overrides: Declaration.DeclarationProps | object): this 73 74 clone(overrides?: Partial<Declaration.DeclarationProps>): this 75 76 cloneAfter(overrides?: Partial<Declaration.DeclarationProps>): this 77 78 cloneBefore(overrides?: Partial<Declaration.DeclarationProps>): this 66 79 /** 67 80 * It represents a specificity of the declaration. … … 79 92 */ 80 93 get important(): boolean 94 81 95 set important(value: boolean) 82 83 parent: ContainerWithChildren | undefined84 85 96 /** 86 97 * The property name for a CSS declaration. … … 94 105 */ 95 106 get prop(): string 107 96 108 set prop(value: string) 97 98 raws: Declaration.DeclarationRaws99 100 type: 'decl'101 102 109 /** 103 110 * The property value for a CSS declaration. … … 119 126 get value(): string 120 127 set value(value: string) 121 122 128 /** 123 129 * It represents a getter that returns `true` if a declaration starts with … … 139 145 */ 140 146 get variable(): boolean 141 set varaible(value: string)142 143 constructor(defaults?: Declaration.DeclarationProps)144 assign(overrides: Declaration.DeclarationProps | object): this145 clone(overrides?: Partial<Declaration.DeclarationProps>): Declaration146 cloneAfter(overrides?: Partial<Declaration.DeclarationProps>): Declaration147 cloneBefore(overrides?: Partial<Declaration.DeclarationProps>): Declaration148 147 } 149 148
Note:
See TracChangeset
for help on using the changeset viewer.