UNPKG

bitpay-sdk

Version:

Complete version of the NodeJS library for the new cryptographically secure BitPay API

12 lines (11 loc) 452 B
import { PayoutInterface } from './Payout'; import { PayoutGroupFailedInterface } from './PayoutGroupFailed'; export interface PayoutGroupInterface { payouts: PayoutInterface[]; failed: PayoutGroupFailedInterface[]; } export declare class PayoutGroup implements PayoutGroupInterface { payouts: PayoutInterface[]; failed: PayoutGroupFailedInterface[]; constructor(payouts: PayoutInterface[], failed: PayoutGroupFailedInterface[]); }