anypay-ts
Version:
TypeScript библиотека для работы с платёжной системой AnyPay
9 lines (8 loc) • 389 B
TypeScript
import { CreatePayoutParams, CreatePayoutResponse, GetPayoutsParams, GetPayoutsResponse } from '../types/payout';
export declare class PayoutService {
private apiId;
private apiKey;
constructor(apiId: string, apiKey: string);
createPayout(params: CreatePayoutParams): Promise<CreatePayoutResponse>;
getPayouts(params?: GetPayoutsParams): Promise<GetPayoutsResponse>;
}