smartpuppeteer/ts/smartpuppeteer.plugins.ts

18 lines
409 B
TypeScript
Raw Normal View History

2020-02-25 01:38:24 +00:00
// node native scope
import * as os from 'os';
2021-01-08 21:16:25 +00:00
export { os };
2020-02-25 01:38:24 +00:00
2019-11-15 20:44:11 +00:00
// @pushrocks scope
2019-11-15 23:35:03 +00:00
import * as smartdelay from '@pushrocks/smartdelay';
2019-11-15 20:44:11 +00:00
import * as smartenv from '@pushrocks/smartenv';
2021-11-07 18:33:09 +00:00
import * as smartshell from '@pushrocks/smartshell';
2019-11-15 20:44:11 +00:00
2021-11-07 18:33:09 +00:00
export { smartdelay, smartenv, smartshell };
2019-11-15 20:44:11 +00:00
// third party scope
import puppeteer from 'puppeteer';
2021-08-17 13:22:10 +00:00
import treeKill from 'tree-kill';
2019-11-15 20:44:11 +00:00
2021-08-17 13:22:10 +00:00
export { puppeteer, treeKill };