declare const httpVerbList: readonly ["GET", "PUT", "POST", "DELETE"]; /** * the http request verb * * @TJS-type string * enum ["GET", "PUT", "POST", "DELETE"] */ export declare type IHttpVerb = typeof httpVerbList[number]; export declare const isIHttpVerb: (t: any) => t is "GET" | "PUT" | "POST" | "DELETE"; export {};