2018-06-13 20:34:49 +00:00
|
|
|
/// <reference types="node" />
|
2017-01-28 23:51:47 +00:00
|
|
|
import * as https from 'https';
|
2017-01-29 00:12:42 +00:00
|
|
|
export interface ISmartRequestOptions extends https.RequestOptions {
|
2017-01-28 23:51:47 +00:00
|
|
|
requestBody?: any;
|
|
|
|
}
|