Files
tsclass/ts/finance/checkingaccount.ts
2020-08-24 15:51:51 +00:00

8 lines
158 B
TypeScript

import { finance } from '../';
export interface ICheckingAccount {
name: string;
currency: finance.TCurrency;
transactions?: finance.ITransaction[];
}