abuse.ch/ts/plugins.ts

34 lines
564 B
TypeScript
Raw Normal View History

2023-07-28 05:31:59 +00:00
// node native
import * as stream from 'stream';
import * as util from 'util';
import unzipper from 'unzipper';
import csv from 'csv-parser';
import * as fs from 'fs';
import * as path from 'path';
export {
stream,
util,
unzipper,
csv,
fs,
path,
}
// @push.rocks scope
import * as smartfile from '@push.rocks/smartfile';
import * as smartpath from '@push.rocks/smartpath';
export {
smartfile,
smartpath,
2023-07-28 12:13:16 +00:00
}
// third party
import nodeFetch from 'node-fetch';
import * as httpsProxy from 'https-proxy-agent';
export {
nodeFetch,
httpsProxy,
2023-07-28 05:31:59 +00:00
}