smartpuppeteer/ts/smartpuppeteer.plugins.ts
2021-08-17 15:22:10 +02:00

17 lines
344 B
TypeScript

// node native scope
import * as os from 'os';
export { os };
// @pushrocks scope
import * as smartdelay from '@pushrocks/smartdelay';
import * as smartenv from '@pushrocks/smartenv';
export { smartdelay, smartenv };
// third party scope
import puppeteer from 'puppeteer';
import treeKill from 'tree-kill';
export { puppeteer, treeKill };