Files
tsclass/ts/finance/checkingaccount.ts
2018-07-22 23:01:56 +02:00

9 lines
192 B
TypeScript

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