UNPKG

connect-sdk-nodejs

Version:

SDK to communicate with the Worldline Global Collect platform using the Worldline Connect Server API

5 lines (4 loc) 350 B
import { SdkContext, SdkResponse } from "../../model"; import { ErrorResponse, FindPayoutsResponse } from "../model/domain"; import { FindPayoutsParams } from "../model/payouts"; export declare function find(sdkContext: SdkContext): (merchantId: string, paymentContext: FindPayoutsParams) => Promise<SdkResponse<FindPayoutsResponse, ErrorResponse>>;