Files
tsclass/ts/finance/checkingaccount.ts
2018-07-25 22:13:19 +02:00

9 lines
196 B
TypeScript

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