smartpuppeteer/ts/smartpuppeteer.plugins.ts

18 lines
302 B
TypeScript
Raw Normal View History

2020-02-25 01:38:24 +00:00
// node native scope
import * as os from 'os';
export {
os
};
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';
2019-11-15 23:35:03 +00:00
export { smartdelay, smartenv };
2019-11-15 20:44:11 +00:00
// third party scope
import puppeteer from 'puppeteer';
2019-11-15 22:41:39 +00:00
export { puppeteer };