export type HttpMethod = 'DELETE' | 'GET' | 'HEAD' | 'OPTIONS' | 'POST' | 'PUT' | 'PATCH' | 'SEARCH';
export type HttpParameterLocation = 'cookie' | 'header' | 'query' | 'path';
export type HttpMultipartFieldType = 'field' | 'file';
