export type HttpMethod = 'DELETE' | 'GET' | 'HEAD' | 'OPTIONS' | 'POST' | 'PUT' | 'PATCH' | 'QUERY' | 'SEARCH';
export type HttpParameterLocation = 'cookie' | 'header' | 'query' | 'path';
export type HttpMultipartFieldType = 'field' | 'file';
export type Transport = 'custom' | 'http' | 'ws' | 'mq' | 'rpc';
