/** @ignore */ export type Dictionary = Record; /** @ignore */ export type Constructor = new (...args: any[]) => T; /** @ignore */ export type Awaitable = T | PromiseLike; export type AllowedHttpMethods = 'GET' | 'HEAD' | 'POST' | 'PUT' | 'DELETE' | 'TRACE' | 'OPTIONS' | 'CONNECT' | 'PATCH'; //# sourceMappingURL=utility-types.d.ts.map