smartrequest/ts/smartrequest.plugins.ts
2022-07-29 15:41:32 +02:00

19 lines
414 B
TypeScript

// node native scope
import * as fs from 'fs';
import * as http from 'http';
import * as https from 'https';
import * as path from 'path';
export { http, https, fs, path };
// pushrocks scope
import * as smartpromise from '@pushrocks/smartpromise';
import * as smarturl from '@pushrocks/smarturl';
export { smartpromise, smarturl };
// third party scope
import formData from 'form-data';
export { formData };