Changeset 0c6b92a for imaps-frontend/node_modules/postcss/lib/at-rule.d.ts
Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/postcss/lib/at-rule.d.ts
rd565449 r0c6b92a 81 81 declare class AtRule_ extends Container { 82 82 /** 83 * The at-rule’s name immediately follows the `@`.84 *85 * ```js86 * const root = postcss.parse('@media print {}')87 * const media = root.first88 * media.name //=> 'media'89 * ```90 */91 get name(): string92 set name(value: string)93 94 /**95 83 * An array containing the layer’s children. 96 84 * … … 111 99 */ 112 100 nodes: Container['nodes'] 101 parent: ContainerWithChildren | undefined 102 103 raws: AtRule.AtRuleRaws 104 type: 'atrule' 105 constructor(defaults?: AtRule.AtRuleProps) 106 assign(overrides: AtRule.AtRuleProps | object): this 107 108 clone(overrides?: Partial<AtRule.AtRuleProps>): this 109 110 cloneAfter(overrides?: Partial<AtRule.AtRuleProps>): this 111 112 cloneBefore(overrides?: Partial<AtRule.AtRuleProps>): this 113 /** 114 * The at-rule’s name immediately follows the `@`. 115 * 116 * ```js 117 * const root = postcss.parse('@media print {}') 118 * const media = root.first 119 * media.name //=> 'media' 120 * ``` 121 */ 122 get name(): string 123 set name(value: string) 113 124 /** 114 125 * The at-rule’s parameters, the values that follow the at-rule’s name … … 123 134 get params(): string 124 135 set params(value: string) 125 parent: ContainerWithChildren | undefined126 127 raws: AtRule.AtRuleRaws128 129 type: 'atrule'130 131 constructor(defaults?: AtRule.AtRuleProps)132 assign(overrides: AtRule.AtRuleProps | object): this133 clone(overrides?: Partial<AtRule.AtRuleProps>): AtRule134 cloneAfter(overrides?: Partial<AtRule.AtRuleProps>): AtRule135 cloneBefore(overrides?: Partial<AtRule.AtRuleProps>): AtRule136 136 } 137 137
Note:
See TracChangeset
for help on using the changeset viewer.