Files
smartserve/ts/plugins.ts

22 lines
573 B
TypeScript

// native scope
import * as path from 'path';
import * as http from 'http';
import * as https from 'https';
import * as fs from 'fs';
import * as zlib from 'zlib';
export { path, http, https, fs, zlib };
// @push.rocks scope
import * as smartpath from '@push.rocks/smartpath';
import * as smartenv from '@push.rocks/smartenv';
import * as smartlog from '@push.rocks/smartlog';
import * as lik from '@push.rocks/lik';
export { smartpath, smartenv, smartlog, lik };
// @api.global scope
import * as typedrequest from '@api.global/typedrequest';
export { typedrequest };