astro-ghostcms/.pnpm-store/v3/files/fc/7aa617966824c4a8c5e321a68e5...

5 lines
532 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
import type { RouteData, SSRResult } from '../../../../@types/astro.js';
import type { AstroComponentFactory } from './factory.js';
export declare function renderToString(result: SSRResult, componentFactory: AstroComponentFactory, props: any, children: any, isPage?: boolean, route?: RouteData): Promise<string | Response>;
export declare function renderToReadableStream(result: SSRResult, componentFactory: AstroComponentFactory, props: any, children: any, isPage?: boolean, route?: RouteData): Promise<ReadableStream | Response>;