UNPKG

got-scraping

Version:

HTTP client made for scraping based on got.

15 lines 532 B
import { OptionsInit as GotOptionsInit } from 'got-cjs'; export { GotOptionsInit }; export interface Context extends Record<string, unknown> { proxyUrl?: string; headerGeneratorOptions?: Record<string, unknown>; useHeaderGenerator?: boolean; headerGenerator?: { getHeaders: (options: Record<string, unknown>) => Record<string, string>; }; insecureHTTPParser?: boolean; sessionToken?: object; } export interface OptionsInit extends Context, GotOptionsInit { } //# sourceMappingURL=context.d.ts.map