You've already forked openaccounting-web
forked from cybercinch/openaccounting-web
13 lines
309 B
TypeScript
13 lines
309 B
TypeScript
import { Transaction, Split} from '../shared/transaction';
|
|
import { FormGroup } from '@angular/forms';
|
|
import { Subject } from 'rxjs';
|
|
|
|
export class TxItem {
|
|
tx: Transaction;
|
|
activeSplit: Split;
|
|
activeSplitIndex: number;
|
|
form: FormGroup;
|
|
balance: number;
|
|
editing: boolean;
|
|
edit$: Subject<any>;
|
|
} |