smartrequest/ts/smartrequest.interfaces.ts

9 lines
226 B
TypeScript
Raw Normal View History

2018-06-13 22:34:49 +02:00
import * as plugins from './smartrequest.plugins';
import * as https from 'https';
2017-01-29 00:51:47 +01:00
2017-01-29 01:12:42 +01:00
export interface ISmartRequestOptions extends https.RequestOptions {
2019-09-08 17:47:30 +02:00
keepAlive?: boolean;
2018-06-13 22:34:49 +02:00
requestBody?: any;
2019-06-12 15:16:27 +02:00
autoJsonParse?: boolean;
2017-06-09 21:48:16 +02:00
}