@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
10 lines (9 loc) • 315 B
TypeScript
import Service from "../service";
import { IRequest } from "../typings/requestOptions";
declare class Resource {
private endpoint;
private service;
constructor(service: Service, endpoint: string);
request(json: string, requestOptions?: IRequest.Options): Promise<string>;
}
export default Resource;