smartrequest/ts/smartrequest.interfaces.ts
2021-05-16 23:39:25 +00:00

10 lines
266 B
TypeScript

import * as plugins from './smartrequest.plugins';
import * as https from 'https';
export interface ISmartRequestOptions extends https.RequestOptions {
keepAlive?: boolean;
requestBody?: any;
autoJsonParse?: boolean;
queryParams?: {[key: string]: string}
}