Files
tsclass/ts/finance/checkingaccount.ts

8 lines
166 B
TypeScript
Raw Normal View History

2022-04-28 12:18:26 +02:00
import { finance } from '../index.js';
export interface ICheckingAccount {
name: string;
2020-01-19 10:19:38 +00:00
currency: finance.TCurrency;
2020-08-24 15:51:51 +00:00
transactions?: finance.ITransaction[];
2018-07-22 18:20:22 +02:00
}