22 lines
413 B
TypeScript
22 lines
413 B
TypeScript
// node native
|
|
import * as path from 'path';
|
|
import * as fs from 'fs';
|
|
|
|
export {
|
|
path,
|
|
fs
|
|
};
|
|
|
|
// @pushrocks scope
|
|
import * as smartdelay from '@pushrocks/smartdelay';
|
|
import * as smartfile from '@pushrocks/smartfile';
|
|
import * as smartpuppeteer from '@pushrocks/smartpuppeteer';
|
|
import * as smartpromise from '@pushrocks/smartpromise';
|
|
|
|
export {
|
|
smartdelay,
|
|
smartfile,
|
|
smartpuppeteer,
|
|
smartpromise
|
|
};
|