Files
bigcapital/packages/server/src/modules/Ledger/JournalEntry.ts
2025-04-07 11:51:24 +02:00

14 lines
258 B
TypeScript

import { ILedgerEntry } from "./types/Ledger.types";
export class JournalEntry {
entry: ILedgerEntry;
constructor(entry: ILedgerEntry) {
const defaults = {
credit: 0,
debit: 0,
};
this.entry = { ...defaults, ...entry };
}
}