22 lines
505 B
TypeScript
22 lines
505 B
TypeScript
// node native
|
|
import * as path from 'path';
|
|
|
|
export {
|
|
path
|
|
}
|
|
|
|
// @push.rocks scope
|
|
import * as smartcli from '@push.rocks/smartcli';
|
|
import * as smartdelay from '@push.rocks/smartdelay';
|
|
import * as smartfile from '@push.rocks/smartfile';
|
|
import * as smartpath from '@push.rocks/smartpath';
|
|
import * as smartpromise from '@push.rocks/smartpromise';
|
|
|
|
export { smartcli, smartdelay, smartfile, smartpath, smartpromise };
|
|
|
|
// third party scope
|
|
import typescript from 'typescript';
|
|
|
|
export {
|
|
typescript
|
|
} |