Ignore:
Timestamp:
12/12/24 17:06:06 (5 weeks ago)
Author:
stefan toskovski <stefantoska84@…>
Branches:
main
Parents:
d565449
Message:

Pred finalna verzija

File:
1 edited

Legend:

Unmodified
Added
Removed
  • imaps-frontend/node_modules/postcss/lib/declaration.d.ts

    rd565449 r0c6b92a  
    6464 */
    6565declare 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
    6679  /**
    6780   * It represents a specificity of the declaration.
     
    7992   */
    8093  get important(): boolean
     94
    8195  set important(value: boolean)
    82 
    83   parent: ContainerWithChildren | undefined
    84 
    8596  /**
    8697   * The property name for a CSS declaration.
     
    94105   */
    95106  get prop(): string
     107
    96108  set prop(value: string)
    97 
    98   raws: Declaration.DeclarationRaws
    99 
    100   type: 'decl'
    101 
    102109  /**
    103110   * The property value for a CSS declaration.
     
    119126  get value(): string
    120127  set value(value: string)
    121 
    122128  /**
    123129   * It represents a getter that returns `true` if a declaration starts with
     
    139145   */
    140146  get variable(): boolean
    141   set varaible(value: string)
    142 
    143   constructor(defaults?: Declaration.DeclarationProps)
    144   assign(overrides: Declaration.DeclarationProps | object): this
    145   clone(overrides?: Partial<Declaration.DeclarationProps>): Declaration
    146   cloneAfter(overrides?: Partial<Declaration.DeclarationProps>): Declaration
    147   cloneBefore(overrides?: Partial<Declaration.DeclarationProps>): Declaration
    148147}
    149148
Note: See TracChangeset for help on using the changeset viewer.