/** * #http.ts * * Code generated by ts-proto. DO NOT EDIT. * @packageDocumentation */ export type FetchRequest = { url: string; data?: RequestData | undefined; }; export type RequestData = { method: string; headers: { [key: string]: string; }; body: string; }; export type RequestData_HeadersEntry = { key: string; value: string; }; export type FetchResponse = { url: string; body: string; status: number; headers: { [key: string]: string; }; }; export type FetchResponse_HeadersEntry = { key: string; value: string; }; //# sourceMappingURL=http.d.ts.map