Files
Library/node_modules/htm/mini/index.d.ts

7 lines
218 B
TypeScript
Raw Normal View History

2026-01-09 23:05:52 -05:00
declare const htm: {
bind<HResult>(
h: (type: any, props: Record<string, any>, ...children: any[]) => HResult
): (strings: TemplateStringsArray, ...values: any[]) => HResult | HResult[];
};
export default htm;