14 lines
401 B
TypeScript
14 lines
401 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 };
|