Files
allowance_planner_2000/frontend/allowance-planner-v2/src/app/models/history.ts
Huffle 344f7a7eef
Some checks failed
Backend Deploy / build (push) Successful in 21s
Backend Build and Test / build (push) Has been cancelled
add history description (#100)
closes #93

Reviewed-on: #100
2025-05-27 14:32:37 +02:00

5 lines
99 B
TypeScript

export interface History {
timestamp: string;
allowance: number;
description: string;
}