UNPKG

connect-sdk-nodejs

Version:

SDK to communicate with the Ingenico ePayments platform using the Ingenico Connect Server API

6 lines (5 loc) 475 B
/// <reference types="node" /> import https = require("https"); import { ConnectionCallback, MultipartFormDataObject, SdkContext } from "../model"; export declare function sendJSON(options: https.RequestOptions, postData: object | undefined | null, context: SdkContext, cb: ConnectionCallback): void; export declare function sendMultipart(options: https.RequestOptions, postData: MultipartFormDataObject, boundary: string, context: SdkContext, cb: ConnectionCallback): void;