3 lines
303 B
TypeScript
3 lines
303 B
TypeScript
import type { APIContext, EndpointHandler } from '../../@types/astro';
|
|
/** Renders an endpoint request to completion, returning the body. */
|
|
export declare function renderEndpoint(mod: EndpointHandler, context: APIContext, ssr: boolean): Promise<Response | import("../../@types/astro").EndpointOutput>;
|