import { TwirpContext, TwirpServer } from 'twirp-ts'; import { FetchRequest, FetchResponse } from './http.js'; export interface HTTPTwirp { Fetch(ctx: T, request: FetchRequest): Promise; } export declare enum HTTPMethod { Fetch = "Fetch" } export declare const HTTPMethodList: HTTPMethod[]; export declare function createHTTPServer(service: HTTPTwirp): TwirpServer>>, T>; //# sourceMappingURL=http.twirp.d.ts.map