UNPKG

@crawlee/core

Version:

The scalable web crawling and scraping library for JavaScript/Node.js. Enables development of data extraction and web automation jobs (not only) with headless Chrome and Puppeteer.

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