Files
website/node_modules/astro/dist/jsx/server.d.ts
2024-05-06 17:15:30 -04:00

14 lines
467 B
TypeScript

export declare function check(Component: any, props: any, { default: children, ...slotted }?: {
default?: null | undefined;
}): Promise<any>;
export declare function renderToStaticMarkup(this: any, Component: any, props?: {}, { default: children, ...slotted }?: {
default?: null | undefined;
}): Promise<{
html: any;
}>;
declare const _default: {
check: typeof check;
renderToStaticMarkup: typeof renderToStaticMarkup;
};
export default _default;