13 lines
187 B
TypeScript
13 lines
187 B
TypeScript
|
import 'typings-global'
|
||
|
import * as url from 'url'
|
||
|
import * as http from 'http'
|
||
|
import * as https from 'https'
|
||
|
|
||
|
import * as q from 'smartq'
|
||
|
|
||
|
export {
|
||
|
url,
|
||
|
http,
|
||
|
https,
|
||
|
q
|
||
|
}
|