mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-07 19:25:13 +02:00
11 lines
304 B
TypeScript
11 lines
304 B
TypeScript
/**
|
|
* @param {Readonly<Node>} from
|
|
* Node to take from.
|
|
* @param {Node} to
|
|
* Node to add to.
|
|
* @returns {undefined}
|
|
* Nothing.
|
|
*/
|
|
export function create(from: Readonly<Node>, to: Node): undefined;
|
|
export type Node = import('estree-jsx').Node;
|
|
//# sourceMappingURL=estree-util-create.d.ts.map
|