23 lines
452 B
TypeScript
23 lines
452 B
TypeScript
// native
|
|
import * as path from 'path';
|
|
|
|
export { path };
|
|
|
|
// @api.global scope
|
|
import * as typedrequest from '@api.global/typedrequest';
|
|
|
|
export {
|
|
typedrequest,
|
|
}
|
|
|
|
// @pushrocks scope
|
|
import * as smartfile from '@push.rocks/smartfile';
|
|
import * as smartlog from '@push.rocks/smartlog';
|
|
|
|
export { smartfile, smartlog };
|
|
|
|
// @configvault.io scope
|
|
import * as configvaultInterfaces from '@configvault.io/interfaces';
|
|
|
|
export { configvaultInterfaces };
|