budget-view-chart
Version:
A React chart component specialising in display budget for personal finance.
23 lines (22 loc) • 429 B
TypeScript
/**
* Type describing the budget data
*/
export interface BudgetRecord {
/**
* Name of the budget item
*/
name: string;
/**
* Description of the budget item
*/
description: string;
/**
* Monthly Budget for this budget item
*/
monthlyBudget: number;
/**
* Monthly Amount for this budget item.
* 12 elements are required.
*/
monthlyAmount: number[];
}