export interface AnyProperty { [propName: string]: any; } export declare type GenericObjectType = Record; /** * Standard HTTP method strings */ declare type _HTTPMethods = 'DELETE' | 'GET' | 'HEAD' | 'PATCH' | 'POST' | 'PUT' | 'OPTIONS' | 'PROPFIND' | 'PROPPATCH' | 'MKCOL' | 'COPY' | 'MOVE' | 'LOCK' | 'UNLOCK' | 'TRACE' | 'SEARCH' | 'REPORT' | 'MKCALENDAR'; export declare type HTTPMethods = Uppercase<_HTTPMethods> | Lowercase<_HTTPMethods>; export declare type RequestOption = { method: HTTPMethods; headers?: GenericObjectType; body?: unknown; [key: string]: any; }; export declare type RequestHandler = { url: string; } & RequestOption; export {}; //# sourceMappingURL=common.types.d.ts.map