astro-ghostcms/.pnpm-store/v3/files/ab/b7602a0696e7f6ee770e0c27609...

11 lines
282 B
Plaintext

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 {};