12 lines
320 B
TypeScript
12 lines
320 B
TypeScript
// node native
|
|
import * as net from 'net';
|
|
import * as tls from 'tls';
|
|
import * as http from 'http';
|
|
import * as https from 'https';
|
|
|
|
// pushrocks scope
|
|
import * as smartnetwork from '@push.rocks/smartnetwork';
|
|
import * as smarturl from '@push.rocks/smarturl';
|
|
|
|
export { net, tls, http, https, smartnetwork, smarturl };
|