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

Pred finalna verzija

File:
1 edited

Legend:

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

    rd565449 r0c6b92a  
    33import { AtRuleProps } from './at-rule.js'
    44import Comment, { CommentProps } from './comment.js'
    5 import Container from './container.js'
     5import Container, { NewChild } from './container.js'
    66import CssSyntaxError from './css-syntax-error.js'
    77import Declaration, { DeclarationProps } from './declaration.js'
     
    236236
    237237  /**
     238   * If this node isn't already dirty, marks it and its ancestors as such. This
     239   * indicates to the LazyResult processor that the {@link Root} has been
     240   * modified by the current plugin and may need to be processed again by other
     241   * plugins.
     242   */
     243  protected markDirty(): void
     244
     245  /**
    238246   * Insert new node after current node to current node’s parent.
    239247   *
     
    247255   * @return This node for methods chain.
    248256   */
    249   after(newNode: Node | Node.ChildProps | Node[] | string | undefined): this
     257  after(
     258    newNode: Node | Node.ChildProps | readonly Node[] | string | undefined
     259  ): this
    250260
    251261  /**
     
    274284   * @return This node for methods chain.
    275285   */
    276   before(newNode: Node | Node.ChildProps | Node[] | string | undefined): this
     286  before(
     287    newNode: Node | Node.ChildProps | readonly Node[] | string | undefined
     288  ): this
    277289
    278290  /**
     
    304316   * @return Duplicate of the node instance.
    305317   */
    306   clone(overrides?: object): Node
     318  clone(overrides?: object): this
    307319
    308320  /**
     
    313325   * @return New node.
    314326   */
    315   cloneAfter(overrides?: object): Node
     327  cloneAfter(overrides?: object): this
    316328
    317329  /**
     
    327339   * @return New node
    328340   */
    329   cloneBefore(overrides?: object): Node
     341  cloneBefore(overrides?: object): this
    330342
    331343  /**
     
    471483   * @return Current node to methods chain.
    472484   */
    473   replaceWith(
    474     ...nodes: (
    475       | Node.ChildNode
    476       | Node.ChildNode[]
    477       | Node.ChildProps
    478       | Node.ChildProps[]
    479     )[]
    480   ): this
     485  replaceWith(...nodes: NewChild[]): this
    481486
    482487  /**
Note: See TracChangeset for help on using the changeset viewer.