9 lines
196 B
TypeScript
9 lines
196 B
TypeScript
import { TCurrency } from './currency';
|
|
import { ITransaction } from './transaction';
|
|
|
|
export interface ICheckingAccount {
|
|
name: string;
|
|
currency: TCurrency;
|
|
transactions: ITransaction[];
|
|
}
|