smarthash/ts/nodehash.plugins.ts
2023-09-22 13:51:11 +02:00

19 lines
421 B
TypeScript

// node native scope
import crypto from 'crypto';
import * as fs from 'fs';
import * as path from 'path';
import * as stream from 'stream';
export { crypto, fs, path, stream };
// pushrocks scope
import * as smartpromise from '@push.rocks/smartpromise';
import * as smartjson from '@push.rocks/smartjson';
export { smartpromise, smartjson };
// thirdparty scope
import through2 from 'through2';
export { through2 };