/** */ export type HttpVerb = 'GET' | 'HEAD' | 'POST' | 'PUT' | 'DELETE' | 'OPTIONS' ; /** */ export type HttpVerbExtended = HttpVerb | 'PATCH' | 'QUERY' | 'CONNECT' | 'TRACE' ;