@typed-tabletop-simulator/ui
Version:
JSX wrapper and components for Tabletop Simulator UI
10 lines (9 loc) • 437 B
TypeScript
/** @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 {};