UNPKG

anil-brd-typescript-sdk

Version:

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

10 lines (9 loc) 399 B
import { HttpClient } from '../http/http-client'; import { IWebUnlockerService, UnlockOptions, UnlockResponse } from '../index'; export declare class WebUnlockerService implements IWebUnlockerService { private httpClient; private zone; constructor(httpClient: HttpClient, zone: string); unlock(url: string, options: UnlockOptions): Promise<UnlockResponse>; private isValidUrl; }