Files
smartdns/ts_server/plugins.ts

32 lines
462 B
TypeScript
Raw Normal View History

// node native
import crypto from 'crypto';
2025-03-21 18:21:47 +00:00
import dgram from 'dgram';
import { EventEmitter } from 'events';
import fs from 'fs';
import * as net from 'net';
2025-03-21 18:21:47 +00:00
import * as path from 'path';
export {
crypto,
dgram,
fs,
net,
2025-03-21 18:21:47 +00:00
path,
}
export const events = { EventEmitter };
// @push.rocks scope
import * as smartrust from '@push.rocks/smartrust';
export {
smartrust,
}
// third party
import * as minimatch from 'minimatch';
export {
minimatch,
}