UNPKG
realestate-jp
Version:
latest (0.1.1)
0.1.1
0.1.0
不動産関連のユーティリティ関数を提供するライブラリ
github.com/ryohidaka/realestate-jp
ryohidaka/realestate-jp
realestate-jp
/
script
/
lib
/
loan
/
types.d.ts
12 lines
•
321 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
/** 住宅ローンの返済計算結果 */
export
interface LoanResult {
/** 通常月の月額返済 */
monthly: number;
/** ボーナス月の返済額 */
bonusMonth: number;
/** 年間支払額 */
annual: number;
/** 総支払額 */
total: number; }
//# sourceMappingURL=types.d.ts.map