mirror of
https://github.com/owncast/owncast.git
synced 2024-10-10 19:16:02 +00:00
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;
|