/** @ignore */ export type Constructor = new (...args: any[]) => T; /** @ignore */ export type Awaitable = T | PromiseLike; /** @ignore */ export declare function entries(obj: T): [keyof T, T[keyof T]][]; /** @ignore */ export declare function keys(obj: T): (keyof T)[]; export declare type AllowedHttpMethods = 'GET' | 'HEAD' | 'POST' | 'PUT' | 'DELETE' | 'TRACE' | 'OPTIONS' | 'CONNECT' | 'PATCH'; //# sourceMappingURL=typedefs.d.ts.map