35 lines
877 B
TypeScript
35 lines
877 B
TypeScript
// node native scope
|
|
import { EventEmitter } from 'node:events';
|
|
import * as fs from 'node:fs';
|
|
import * as http from 'node:http';
|
|
import * as net from 'node:net';
|
|
import * as path from 'node:path';
|
|
import * as tls from 'node:tls';
|
|
import * as url from 'node:url';
|
|
import * as http2 from 'node:http2';
|
|
|
|
export { EventEmitter, fs, http, net, path, tls, url, http2 };
|
|
|
|
// tsclass scope
|
|
import * as tsclass from '@tsclass/tsclass';
|
|
|
|
export { tsclass };
|
|
|
|
// pushrocks scope
|
|
import * as smartcrypto from '@push.rocks/smartcrypto';
|
|
import * as smartlog from '@push.rocks/smartlog';
|
|
import * as smartlogDestinationLocal from '@push.rocks/smartlog/destination-local';
|
|
import * as smartrust from '@push.rocks/smartrust';
|
|
|
|
export {
|
|
smartcrypto,
|
|
smartlog,
|
|
smartlogDestinationLocal,
|
|
smartrust,
|
|
};
|
|
|
|
// third party scope
|
|
import { minimatch } from 'minimatch';
|
|
|
|
export { minimatch };
|