/** * Possible Http verb values. */ export declare type HttpVerb = 'GET' | 'HEAD' | 'POST' | 'PUT' | 'DELETE' | 'CONNECT' | 'OPTIONS' | 'PATCH' | '*'; /** * Http methods. */ export declare const HttpVerbs: Record;