UNPKG

@zsnout/ithkuil

Version:

A set of tools which can generate and parse romanized Ithkuil text and which can generate Ithkuil script from text and JSON data.

11 lines (10 loc) 237 B
/** * Clones a node. * * @param props Properties modifying the cloned element. * @returns The cloned node. */ export declare function Clone<T extends Node>(props: { /** The node to be cloned. */ readonly children: T; }): T;