6 lines
218 B
TypeScript
6 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;
|