2022-07-29 01:19:50 +02:00
|
|
|
import * as plugins from './smartrequest.plugins.js';
|
2018-06-13 22:34:49 +02:00
|
|
|
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;
|
2022-02-15 18:57:42 +01:00
|
|
|
queryParams?: { [key: string]: string };
|
2023-04-19 14:38:28 +02:00
|
|
|
hardDataCuttingTimeout?: number;
|
2017-06-09 21:48:16 +02:00
|
|
|
}
|