-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy pathrequestOptions.ts
More file actions
33 lines (28 loc) · 1.21 KB
/
requestOptions.ts
File metadata and controls
33 lines (28 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
* ######
* ######
* ############ ####( ###### #####. ###### ############ ############
* ############# #####( ###### #####. ###### ############# #############
* ###### #####( ###### #####. ###### ##### ###### ##### ######
* ###### ###### #####( ###### #####. ###### ##### ##### ##### ######
* ###### ###### #####( ###### #####. ###### ##### ##### ######
* ############# ############# ############# ############# ##### ######
* ############ ############ ############# ############ ##### ######
* ######
* #############
* ############
* Adyen NodeJS API Library
* Copyright (c) 2020 Adyen B.V.
* This file is open source and available under the MIT license.
* See the LICENSE file for more info.
*/
/// <reference types="node"/>
import * as https from "https";
import { URLSearchParams } from "url";
export namespace IRequest {
type QueryString = ConstructorParameters<typeof URLSearchParams>[0];
export type Options = https.RequestOptions & {
idempotencyKey?: string;
params?: QueryString;
};
}