mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
13 lines
238 B
TypeScript
13 lines
238 B
TypeScript
import Decimal from 'decimal.js-light'
|
|
|
|
export interface TransactionContext {
|
|
typeId: number
|
|
userId: number
|
|
balance: Decimal
|
|
balanceDate: Date
|
|
amount: Decimal
|
|
memo: string
|
|
creationDate?: Date
|
|
sendReceiverUserId?: number
|
|
}
|