fix(core): add ICheckingAccount, IPayment, TCurrency
This commit is contained in:
8
ts/finance/checkingaccount.ts
Normal file
8
ts/finance/checkingaccount.ts
Normal file
@ -0,0 +1,8 @@
|
||||
import { TCurrency } from "./currency";
|
||||
import { IPayment } from "./payment";
|
||||
|
||||
export interface ICheckingAccount {
|
||||
name: string;
|
||||
currency: TCurrency;
|
||||
payment: IPayment[];
|
||||
}
|
Reference in New Issue
Block a user