33 lines
491 B
TypeScript
33 lines
491 B
TypeScript
// node native
|
|
import crypto from 'crypto';
|
|
import fs from 'fs';
|
|
import http from 'http';
|
|
import https from 'https';
|
|
import dgram from 'dgram';
|
|
|
|
export {
|
|
crypto,
|
|
fs,
|
|
http,
|
|
https,
|
|
dgram,
|
|
}
|
|
|
|
// @push.rocks scope
|
|
import * as smartpromise from '@push.rocks/smartpromise';
|
|
|
|
export {
|
|
smartpromise,
|
|
}
|
|
|
|
// third party
|
|
import * as elliptic from 'elliptic';
|
|
import * as dnsPacket from 'dns-packet';
|
|
import * as minimatch from 'minimatch';
|
|
|
|
export {
|
|
dnsPacket,
|
|
elliptic,
|
|
minimatch,
|
|
}
|