Files
Library/node_modules/htm/mini/index.d.ts
2026-01-09 23:05:52 -05: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;