Files
Your NamebaishaliHolocron b9ac5ae0b2 first commit
2026-06-15 12:57:03 +05:30

10 lines
213 B
TypeScript

export interface Expense {
expenseIdentifier?: string;
expenseName: string;
location: string;
currency: string;
cost: number;
quantity: number;
totalCost: number;
remarks: string;
}