UNPKG

anil-brd-typescript-sdk

Version:

TypeScript SDK for Bright Data APIs - Web Unlocker, SERP, and Scraper APIs

11 lines (10 loc) 383 B
import { WebUnlockerService } from './services/web-unlocker-service'; import { BrightDataConfig } from './index'; export interface IBrightDataClient { webUnlocker: WebUnlockerService; } export declare class BrightDataClient implements IBrightDataClient { private httpClient; readonly webUnlocker: WebUnlockerService; constructor(config: string | BrightDataConfig); }