UNPKG

@amirmarmul/waba-common

Version:

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

19 lines (18 loc) 407 B
export declare enum BalanceMutationType { Credit = "credit", Debit = "debit" } export interface BalanceMutation { accountId: string; account?: any; creatorId?: string; creatorName?: string; amount: number; resource: string; resourceName: string; type: BalanceMutationType; notes: string; before?: number; after?: number; } export default BalanceMutation;