UNPKG

@typed-tabletop-simulator/ui

Version:
10 lines (9 loc) 437 B
/** @noSelfInFile */ type CreateElementFunction = (this: void, props?: any, ...children: any[]) => unknown; declare function createFragment(this: void, props?: object, ...children: any[]): any; declare function createElement(this: any, tag: string | CreateElementFunction, props?: object, ...children: any[]): any; export declare const XmlUi: { Fragment: typeof createFragment; createElement: typeof createElement; }; export {};