32 lines
462 B
TypeScript
32 lines
462 B
TypeScript
// node native
|
|
import crypto from 'crypto';
|
|
import dgram from 'dgram';
|
|
import { EventEmitter } from 'events';
|
|
import fs from 'fs';
|
|
import * as net from 'net';
|
|
import * as path from 'path';
|
|
|
|
export {
|
|
crypto,
|
|
dgram,
|
|
fs,
|
|
net,
|
|
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,
|
|
}
|