puppeteer-tough-cookie-store
Version:
Puppeteer cookie store implementation for tough-cookie
6 lines (5 loc) • 325 B
TypeScript
import type { /*Browser,*/ Page } from 'puppeteer';
import { PuppeteerToughCookieStore, StoreOptions } from './store';
import * as utils from './utils';
export declare function getStoreByPage(page: Page, options?: StoreOptions): Promise<PuppeteerToughCookieStore>;
export { utils, StoreOptions, PuppeteerToughCookieStore, };