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/at-rule.d.ts

    rd565449 r0c6b92a  
    8181declare class AtRule_ extends Container {
    8282  /**
    83    * The at-rule’s name immediately follows the `@`.
    84    *
    85    * ```js
    86    * const root  = postcss.parse('@media print {}')
    87    * const media = root.first
    88    * media.name //=> 'media'
    89    * ```
    90    */
    91   get name(): string
    92   set name(value: string)
    93 
    94   /**
    9583   * An array containing the layer’s children.
    9684   *
     
    11199   */
    112100  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)
    113124  /**
    114125   * The at-rule’s parameters, the values that follow the at-rule’s name
     
    123134  get params(): string
    124135  set params(value: string)
    125   parent: ContainerWithChildren | undefined
    126 
    127   raws: AtRule.AtRuleRaws
    128 
    129   type: 'atrule'
    130 
    131   constructor(defaults?: AtRule.AtRuleProps)
    132   assign(overrides: AtRule.AtRuleProps | object): this
    133   clone(overrides?: Partial<AtRule.AtRuleProps>): AtRule
    134   cloneAfter(overrides?: Partial<AtRule.AtRuleProps>): AtRule
    135   cloneBefore(overrides?: Partial<AtRule.AtRuleProps>): AtRule
    136136}
    137137
Note: See TracChangeset for help on using the changeset viewer.