Notes/static/js/lib/htm/htm.d.ts
2023-06-15 07:24:23 +02:00

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;