Files
app/ts/plugins.ts
T

55 lines
1.5 KiB
TypeScript
Raw Normal View History

// Native scope
2024-09-29 13:56:38 +02:00
import * as path from 'path';
export { path };
// Project scope
import * as idpInterfaces from '../dist_ts_interfaces/index.js';
export { idpInterfaces };
2024-09-29 13:56:38 +02:00
// @api.global scope
import * as typedserver from '@api.global/typedserver';
2024-09-29 13:56:38 +02:00
import * as typedrequest from '@api.global/typedrequest';
import * as typedsocket from '@api.global/typedsocket';
export { typedserver, typedrequest, typedsocket };
2024-09-29 13:56:38 +02:00
// @serve.zone scope
import * as szPlatformClient from '@serve.zone/platformclient';
export { szPlatformClient };
// @push.rocks scope
2024-09-29 13:56:38 +02:00
import * as lik from '@push.rocks/lik';
import * as projectinfo from '@push.rocks/projectinfo';
import * as qenv from '@push.rocks/qenv';
import * as smartdata from '@push.rocks/smartdata';
import * as smartdelay from '@push.rocks/smartdelay';
import * as smartjwt from '@push.rocks/smartjwt';
import * as smartlog from '@push.rocks/smartlog';
2024-09-29 13:56:38 +02:00
import * as smartmail from '@push.rocks/smartmail';
import * as smarthash from '@push.rocks/smarthash';
import * as smartpath from '@push.rocks/smartpath';
import * as smartpromise from '@push.rocks/smartpromise';
import * as smarttime from '@push.rocks/smarttime';
import * as smartunique from '@push.rocks/smartunique';
import * as taskbuffer from '@push.rocks/taskbuffer';
export {
lik,
projectinfo,
qenv,
smartdata,
smartdelay,
smarthash,
smartjwt,
smartlog,
smartmail,
2024-09-29 13:56:38 +02:00
smartpath,
smartpromise,
smarttime,
smartunique,
taskbuffer,
};
// @tsclass scope
import * as tsclass from '@tsclass/tsclass';
export { tsclass };