connect-sdk-nodejs
Version:
SDK to communicate with the Worldline Global Collect platform using the Worldline Connect Server API
5 lines (4 loc) • 355 B
TypeScript
import { SdkContext, SdkResponse } from "../../model";
import { ErrorResponse, FindPaymentsResponse } from "../model/domain";
import { FindPaymentsParams } from "../model/payments";
export declare function find(sdkContext: SdkContext): (merchantId: string, paymentContext: FindPaymentsParams) => Promise<SdkResponse<FindPaymentsResponse, ErrorResponse>>;