UNPKG

incogniton

Version:

TypeScript-supported JS client library for the Incogniton API, featuring browser automation capabilities

14 lines 960 B
/** * @module incogniton-js-client */ import { IncognitonClient } from './api/incogniton.client.js'; export default IncognitonClient; export { IncognitonClient } from './api/incogniton.client.js'; export type { ProfileId, Timestamps, BaseResponse, GeneralProfileInformation, Proxy, Timezone, WebRTC, Navigator, Other, } from './models/common.types.js'; export type { ApiResponse, ApiError, CreateBrowserProfileRequest, UpdateBrowserProfileRequest, GetCookieResponse, AddCookieRequest, PuppeteerLaunchResponse, SeleniumLaunchResponse, } from './models/api.types.js'; export type { BrowserProfile } from './models/browser-profile.types.js'; export { HttpAgent, HttpAgentBuilder, HttpMethod } from './utils/http/agent.js'; export { InitHttpAgent } from './utils/http/provider.js'; export { APIError, HttpError, TimeoutError } from './utils/http/errors.js'; export { IncognitonBrowser } from './browser/incogniton.browser.js'; //# sourceMappingURL=index.d.ts.map