mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
11 lines
173 B
TypeScript
11 lines
173 B
TypeScript
|
|
export default class JournalEntry {
|
|
constructor(entry) {
|
|
const defaults = {
|
|
credit: 0,
|
|
debit: 0,
|
|
};
|
|
this.entry = { ...defaults, ...entry };
|
|
}
|
|
}
|