@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
10 lines (9 loc) • 386 B
TypeScript
/// <reference types="node" />
import { AgentOptions } from "https";
import { Config } from "../index";
import { IRequest } from "../typings/requestOptions";
interface ClientInterface {
request(endpoint: string, json: string, config: Config, isApiKeyRequired: boolean, requestOptions?: IRequest.Options): Promise<string>;
proxy?: AgentOptions;
}
export default ClientInterface;