astro-ghostcms/.pnpm-store/v3/files/0c/3a6b2405376c399b336add37e94...

11 lines
440 B
Plaintext

import type { AstroCookies, ComponentInstance } from '../../@types/astro.js';
import type { RenderContext } from './context.js';
import type { Environment } from './environment.js';
export type RenderPage = {
mod: ComponentInstance | undefined;
renderContext: RenderContext;
env: Environment;
cookies: AstroCookies;
};
export declare function renderPage({ mod, renderContext, env, cookies }: RenderPage): Promise<Response>;