1 2 3 4 5 6 7 8 9 10 11
import { Moment } from "moment"; import Currency from "./currency/currency"; interface Account { readonly id: number; readonly name: string; readonly openingBalance: Currency; readonly openingDate: Moment; } export default Account;