mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 12:20:31 +00:00
14 lines
258 B
TypeScript
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 };
|
|
}
|
|
}
|