smartpuppeteer/ts/smartpuppeteer.plugins.ts
2024-04-12 13:13:09 +02:00

17 lines
352 B
TypeScript

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