Files
smartproxy/ts/plugins.ts

35 lines
877 B
TypeScript
Raw Permalink Normal View History

2019-08-20 18:42:52 +02:00
// 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';
2019-08-20 18:42:52 +02:00
export { EventEmitter, fs, http, net, path, tls, url, http2 };
2019-08-22 12:49:29 +02:00
// tsclass scope
import * as tsclass from '@tsclass/tsclass';
2019-08-22 16:14:50 +02:00
export { tsclass };
2019-08-20 18:42:52 +02:00
2019-08-21 03:14:42 +02:00
// pushrocks scope
2025-05-18 15:38:07 +00:00
import * as smartcrypto from '@push.rocks/smartcrypto';
2025-05-19 22:47:13 +00:00
import * as smartlog from '@push.rocks/smartlog';
import * as smartlogDestinationLocal from '@push.rocks/smartlog/destination-local';
import * as smartrust from '@push.rocks/smartrust';
2025-05-01 15:39:20 +00:00
export {
2025-05-18 15:38:07 +00:00
smartcrypto,
2025-05-19 22:47:13 +00:00
smartlog,
smartlogDestinationLocal,
smartrust,
2025-05-01 15:39:20 +00:00
};
2019-08-21 23:41:06 +02:00
// third party scope
import { minimatch } from 'minimatch';
2019-08-21 23:41:06 +02:00
export { minimatch };