/// /// import * as https from "https"; import { URLSearchParams } from "url"; export declare namespace IRequest { type QueryString = ConstructorParameters[0]; export type Options = https.RequestOptions & { idempotencyKey?: string; params?: QueryString; }; export {}; }