smartpuppeteer/ts/smartpuppeteer.plugins.ts
2021-11-07 19:33:09 +01:00

18 lines
409 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';
import * as smartshell from '@pushrocks/smartshell';
export { smartdelay, smartenv, smartshell };
// third party scope
import puppeteer from 'puppeteer';
import treeKill from 'tree-kill';
export { puppeteer, treeKill };