UNPKG

satori-html

Version:

Generate a [satori](https://github.com/vercel/satori)-friendly VDOM from a string of HTML.

11 lines (10 loc) 282 B
interface VNode { type: string; props: { style?: Record<string, any>; children?: string | VNode | VNode[]; [prop: string]: any; }; } export declare function html(templates: string | TemplateStringsArray, ...expressions: any[]): VNode; export {};