UNPKG

@adyen/api-library

Version:

The Adyen API Library for NodeJS enables you to work with Adyen APIs.

13 lines (12 loc) 380 B
/// <reference types="node" /> /// <reference types="node" /> import * as https from "https"; import { URLSearchParams } from "url"; export declare namespace IRequest { type QueryString = ConstructorParameters<typeof URLSearchParams>[0]; export type Options = https.RequestOptions & { idempotencyKey?: string; params?: QueryString; }; export {}; }