Changeset 0c6b92a for imaps-frontend/node_modules/postcss/lib/node.d.ts
- Timestamp:
- 12/12/24 17:06:06 (6 weeks ago)
- Branches:
- main
- Children:
- 79a0317
- Parents:
- d565449
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified imaps-frontend/node_modules/postcss/lib/node.d.ts ¶
rd565449 r0c6b92a 3 3 import { AtRuleProps } from './at-rule.js' 4 4 import Comment, { CommentProps } from './comment.js' 5 import Container from './container.js'5 import Container, { NewChild } from './container.js' 6 6 import CssSyntaxError from './css-syntax-error.js' 7 7 import Declaration, { DeclarationProps } from './declaration.js' … … 236 236 237 237 /** 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 /** 238 246 * Insert new node after current node to current node’s parent. 239 247 * … … 247 255 * @return This node for methods chain. 248 256 */ 249 after(newNode: Node | Node.ChildProps | Node[] | string | undefined): this 257 after( 258 newNode: Node | Node.ChildProps | readonly Node[] | string | undefined 259 ): this 250 260 251 261 /** … … 274 284 * @return This node for methods chain. 275 285 */ 276 before(newNode: Node | Node.ChildProps | Node[] | string | undefined): this 286 before( 287 newNode: Node | Node.ChildProps | readonly Node[] | string | undefined 288 ): this 277 289 278 290 /** … … 304 316 * @return Duplicate of the node instance. 305 317 */ 306 clone(overrides?: object): Node318 clone(overrides?: object): this 307 319 308 320 /** … … 313 325 * @return New node. 314 326 */ 315 cloneAfter(overrides?: object): Node327 cloneAfter(overrides?: object): this 316 328 317 329 /** … … 327 339 * @return New node 328 340 */ 329 cloneBefore(overrides?: object): Node341 cloneBefore(overrides?: object): this 330 342 331 343 /** … … 471 483 * @return Current node to methods chain. 472 484 */ 473 replaceWith( 474 ...nodes: ( 475 | Node.ChildNode 476 | Node.ChildNode[] 477 | Node.ChildProps 478 | Node.ChildProps[] 479 )[] 480 ): this 485 replaceWith(...nodes: NewChild[]): this 481 486 482 487 /**
Note:
See TracChangeset
for help on using the changeset viewer.