30 lines
581 B
TypeScript
30 lines
581 B
TypeScript
|
// @serve.zone scope
|
||
|
import * as servezoneInterfaces from '@serve.zone/interfaces';
|
||
|
|
||
|
export {
|
||
|
servezoneInterfaces,
|
||
|
}
|
||
|
|
||
|
// @push.rocks scope
|
||
|
import * as qenv from '@push.rocks/qenv';
|
||
|
import * as smartlog from '@push.rocks/smartlog';
|
||
|
import * as smartntml from '@push.rocks/smartntml';
|
||
|
|
||
|
export {
|
||
|
qenv,
|
||
|
smartlog,
|
||
|
smartntml,
|
||
|
}
|
||
|
|
||
|
|
||
|
// @api.global scope
|
||
|
import * as typedrequest from '@api.global/typedrequest';
|
||
|
import * as typedserver from '@api.global/typedserver';
|
||
|
import * as typedsocket from '@api.global/typedsocket';
|
||
|
|
||
|
export {
|
||
|
typedrequest,
|
||
|
typedserver,
|
||
|
typedsocket,
|
||
|
}
|