smartrequest/ts/smartrequest.interfaces.ts

11 lines
307 B
TypeScript
Raw Normal View History

2022-07-28 23:19:50 +00:00
import * as plugins from './smartrequest.plugins.js';
2018-06-13 20:34:49 +00:00
import * as https from 'https';
2017-01-28 23:51:47 +00:00
2017-01-29 00:12:42 +00:00
export interface ISmartRequestOptions extends https.RequestOptions {
2019-09-08 15:47:30 +00:00
keepAlive?: boolean;
2018-06-13 20:34:49 +00:00
requestBody?: any;
2019-06-12 13:16:27 +00:00
autoJsonParse?: boolean;
2022-02-15 17:57:42 +00:00
queryParams?: { [key: string]: string };
2023-04-19 12:38:28 +00:00
hardDataCuttingTimeout?: number;
2017-06-09 19:48:16 +00:00
}