7 lines
218 B
TypeScript
7 lines
218 B
TypeScript
|
declare const htm: {
|
||
|
bind<HResult>(
|
||
|
h: (type: any, props: Record<string, any>, ...children: any[]) => HResult
|
||
|
): (strings: TemplateStringsArray, ...values: any[]) => HResult | HResult[];
|
||
|
};
|
||
|
export default htm;
|