Files
tsclass/ts/finance/checkingaccount.ts
2020-01-19 10:19:38 +00:00

8 lines
157 B
TypeScript

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