mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 21:00:31 +00:00
add server to monorepo.
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
import { INumberFormatQuery } from '../../FinancialStatements';
|
||||
|
||||
export interface ICashflowAccountTransactionsQuery {
|
||||
page: number;
|
||||
pageSize: number;
|
||||
accountId: number;
|
||||
numberFormat: INumberFormatQuery;
|
||||
}
|
||||
|
||||
export interface ICashflowAccountTransaction {
|
||||
withdrawal: number;
|
||||
deposit: number;
|
||||
runningBalance: number;
|
||||
|
||||
formattedWithdrawal: string;
|
||||
formattedDeposit: string;
|
||||
formattedRunningBalance: string;
|
||||
|
||||
transactionNumber: string;
|
||||
referenceNumber: string;
|
||||
|
||||
referenceId: number;
|
||||
referenceType: string;
|
||||
|
||||
formattedTransactionType: string;
|
||||
|
||||
balance: number;
|
||||
formattedBalance: string;
|
||||
|
||||
date: Date;
|
||||
formattedDate: string;
|
||||
}
|
||||
Reference in New Issue
Block a user