/** * #webbit.ts * * Code generated by ts-proto. DO NOT EDIT. * @packageDocumentation */ export declare enum HttpMethod { HTTP_METHOD_UNSPECIFIED = 0, POST = 1, GET = 2, HEAD = 3, PUT = 4, DELETE = 5, PATCH = 6, OPTIONS = 7, UNRECOGNIZED = -1 } export type WebbitHttpRequest = { method: HttpMethod; path: string; headers: { [key: string]: string; }; body: string; }; export type WebbitHttpRequest_HeadersEntry = { key: string; value: string; }; export type WebbitHttpResponse = { statusCode: number; headers: { [key: string]: string; }; body: string; }; export type WebbitHttpResponse_HeadersEntry = { key: string; value: string; }; //# sourceMappingURL=webbit.d.ts.map