34 lines
896 B
TypeScript
34 lines
896 B
TypeScript
|
// node native
|
||
|
import * as path from 'path';
|
||
|
|
||
|
export {
|
||
|
path
|
||
|
}
|
||
|
|
||
|
// @serve.zone scope
|
||
|
import * as servezoneInterfaces from '@serve.zone/interfaces';
|
||
|
|
||
|
export {
|
||
|
servezoneInterfaces
|
||
|
}
|
||
|
|
||
|
// @api.global scope
|
||
|
import * as typedrequest from '@api.global/typedrequest';
|
||
|
import * as typedserver from '@api.global/typedserver';
|
||
|
|
||
|
export {
|
||
|
typedrequest,
|
||
|
typedserver,
|
||
|
}
|
||
|
|
||
|
// @push.rocks scope
|
||
|
import * as projectinfo from '@push.rocks/projectinfo';
|
||
|
import * as qenv from '@push.rocks/qenv';
|
||
|
import * as smartdata from '@push.rocks/smartdata';
|
||
|
import * as smartfile from '@push.rocks/smartfile';
|
||
|
import * as smartlog from '@push.rocks/smartlog';
|
||
|
import * as smartmail from '@push.rocks/smartmail';
|
||
|
import * as smartpath from '@push.rocks/smartpath';
|
||
|
import * as smartrequest from '@push.rocks/smartrequest';
|
||
|
|
||
|
export { projectinfo, qenv, smartdata, smartfile, smartlog, smartmail, smartpath, smartrequest };
|