/** * HTTP request method. */ export declare const RequestMethod: { readonly METHOD_UNSPECIFIED: "METHOD_UNSPECIFIED"; readonly GET: "GET"; readonly HEAD: "HEAD"; readonly POST: "POST"; readonly PUT: "PUT"; readonly DELETE: "DELETE"; readonly CONNECT: "CONNECT"; readonly OPTIONS: "OPTIONS"; readonly TRACE: "TRACE"; readonly PATCH: "PATCH"; }; /** * HTTP request method. */ export type RequestMethod = 'METHOD_UNSPECIFIED' | 0 | 'GET' | 1 | 'HEAD' | 2 | 'POST' | 3 | 'PUT' | 4 | 'DELETE' | 5 | 'CONNECT' | 6 | 'OPTIONS' | 7 | 'TRACE' | 8 | 'PATCH' | 9; /** * HTTP request method. */ export type RequestMethod__Output = typeof RequestMethod[keyof typeof RequestMethod];