UNPKG

@adyen/api-library

Version:

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

22 lines (21 loc) 691 B
/// <reference types="node" /> /// <reference types="node" /> /// <reference types="node" /> export * from './amount'; export * from './notification'; export * from './notificationItem'; export * from './notificationRequestItem'; import * as fs from 'fs'; export interface RequestDetailedFile { value: Buffer; options?: { filename?: string; contentType?: string; }; } export type RequestFile = string | Buffer | fs.ReadStream | RequestDetailedFile; export declare class ObjectSerializer { static findCorrectType(data: any, expectedType: string): any; static serialize(data: any, type: string): any; static deserialize(data: any, type: string): any; }