UNPKG

@amirmarmul/waba-common

Version:

![GitHub release](https://img.shields.io/github/v/release/amirmarmul/waba-common?style=flat-square)

15 lines (14 loc) 286 B
export declare enum PaymentType { Credit = "credit", Debit = "debit" } export interface Payment { accountId: string; account?: any; amount: number; resource?: string; resourceName?: string; type: PaymentType; notes: string; } export default Payment;