29 lines
454 B
TypeScript
29 lines
454 B
TypeScript
|
// node native
|
||
|
import * as path from 'path';
|
||
|
|
||
|
export {
|
||
|
path,
|
||
|
}
|
||
|
|
||
|
// @push.rocks scope
|
||
|
import * as smartpath from '@push.rocks/smartpath';
|
||
|
|
||
|
export {
|
||
|
smartpath,
|
||
|
}
|
||
|
|
||
|
// @api.global scope
|
||
|
import * as typedrequest from '@api.global/typedrequest';
|
||
|
import * as typedrequestInterfaces from '@api.global/typedrequest-interfaces';
|
||
|
|
||
|
export {
|
||
|
typedrequest,
|
||
|
typedrequestInterfaces,
|
||
|
}
|
||
|
|
||
|
// third party
|
||
|
import * as electron from 'electron';
|
||
|
|
||
|
export {
|
||
|
electron,
|
||
|
}
|