kjelsrud.dev/node_modules/astro/dist/runtime/server/endpoint.d.ts

4 lines
303 B
TypeScript
Raw Normal View History

2023-07-19 21:31:30 +02:00
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>;