UNPKG

realestate-jp

Version:

不動産関連のユーティリティ関数を提供するライブラリ

12 lines 321 B
/** 住宅ローンの返済計算結果 */ export interface LoanResult { /** 通常月の月額返済 */ monthly: number; /** ボーナス月の返済額 */ bonusMonth: number; /** 年間支払額 */ annual: number; /** 総支払額 */ total: number; } //# sourceMappingURL=types.d.ts.map