UNPKG

anil-brd-typescript-sdk

Version:

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

8 lines (7 loc) 250 B
import { UnlockOptions, UnlockResponse } from './index'; export interface IWebUnlockerService { unlock(url: string, options?: UnlockOptions): Promise<UnlockResponse>; } export interface IBrightDataClient { webUnlocker: IWebUnlockerService; }