UNPKG

@edge-runtime/vm

Version:

Low level bindings for creating Web Standard contexts.

12 lines (11 loc) 303 B
export interface DispatchFetch { (input: string, init?: RequestInit): Promise<Response & { waitUntil: () => Promise<any>; }>; } export interface RejectionHandler { (reason?: {} | null, promise?: Promise<any>): void; } export interface ErrorHandler { (error?: {} | null): void; }