zent
Version:
一套前端设计语言和基于React的实现
5 lines (4 loc) • 432 B
TypeScript
declare function createElement<K extends keyof HTMLElementTagNameMap>(tagName: K, options?: ElementCreationOptions): HTMLElementTagNameMap[K];
declare function createElement<K extends keyof HTMLElementDeprecatedTagNameMap>(tagName: K, options?: ElementCreationOptions): HTMLElementDeprecatedTagNameMap[K];
declare function createElement(tagName: string, options?: ElementCreationOptions): HTMLElement;
export default createElement;