UNPKG

puppeteer-extra-plugin-timezone

Version:

A puppeteer-extra plugin to automatically emulate the appropriate timezones using IP reflection services.

16 lines (15 loc) 366 B
/** * Export public modules. */ export * from "./types"; export * from "./provider"; export * from "./plugin"; export * from "./constants"; export * from "./exceptions"; /** * Export plugin factory as default export. * @return {TimezonePlugin} */ import { TimezonePlugin } from "./plugin"; declare const _default: () => TimezonePlugin; export default _default;