site/node_modules/preact-render-to-string/src/jsx.d.ts
2024-10-14 08:09:33 +02:00

25 lines
496 B
TypeScript

import { VNode } from 'preact';
interface Options {
jsx?: boolean;
xml?: boolean;
pretty?: boolean | string;
shallow?: boolean;
functions?: boolean;
functionNames?: boolean;
skipFalseAttributes?: boolean;
}
export default function renderToStringPretty(
vnode: VNode,
context?: any,
options?: Options
): string;
export function render(vnode: VNode, context?: any, options?: Options): string;
export function shallowRender(
vnode: VNode,
context?: any,
options?: Options
): string;