24 lines
336 B
TypeScript
24 lines
336 B
TypeScript
|
// node native scope
|
||
|
import * as fs from 'fs';
|
||
|
import * as path from 'path';
|
||
|
|
||
|
export {
|
||
|
fs,
|
||
|
path,
|
||
|
}
|
||
|
|
||
|
// @push.rocks scope
|
||
|
import * as smartpath from '@push.rocks/smartpath';
|
||
|
import * as smartfile from '@push.rocks/smartfile';
|
||
|
|
||
|
export {
|
||
|
smartpath,
|
||
|
smartfile,
|
||
|
}
|
||
|
|
||
|
// third party scope
|
||
|
import axios from 'axios';
|
||
|
|
||
|
export {
|
||
|
axios,
|
||
|
}
|