/** * An interface representing context parameter in Cloudflare Workers and Vercel Edge Functions. * Refer to the following resources: * - https://developers.cloudflare.com/workers/runtime-apis/fetch-event/ * - https://vercel.com/docs/concepts/functions/edge-functions/edge-functions-api#waituntil */ export interface ExecutionContext { waitUntil(promise: Promise): void; } /** * Default ExecutionContext with simple settings. */ export declare class NoopExecutionContext implements ExecutionContext { waitUntil(promise: Promise): void; } //# sourceMappingURL=execution-context.d.ts.map