UNPKG

puppeteer-extra-plugin-session

Version:

A puppeteer plugin to dump and inject session data.

20 lines (19 loc) 557 B
/** * Export public modules. * TODO: make sure that everything is exported */ export * from './classes/session-manager'; export * from './classes/storage-provider'; export * from './constants/constants'; export * from './exceptions'; export * from './plugin/injector'; export * from './plugin/plugin'; export * from './schemas'; export * from './session'; /** * Export plugin factory as default export. * @return {SessionPlugin} */ import { SessionPlugin } from './plugin/plugin'; declare const _default: () => SessionPlugin; export default _default;