smartpuppeteer/ts/smartpuppeteer.plugins.ts

17 lines
352 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
2024-04-12 11:13:09 +00:00
import * as smartdelay from '@push.rocks/smartdelay';
import * as smartshell from '@push.rocks/smartshell';
2019-11-15 20:44:11 +00:00
2022-03-24 12:51:12 +00:00
export { smartdelay, 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 };