9 lines
179 B
TypeScript
9 lines
179 B
TypeScript
import { TCurrency } from './currency';
|
|
import { IPayment } from './payment';
|
|
|
|
export interface ICheckingAccount {
|
|
name: string;
|
|
currency: TCurrency;
|
|
payment: IPayment[];
|
|
}
|