14 lines
467 B
TypeScript
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;
|