summaryrefslogtreecommitdiff
path: root/gui/src/types/budgetMap.ts
diff options
context:
space:
mode:
Diffstat (limited to 'gui/src/types/budgetMap.ts')
-rw-r--r--gui/src/types/budgetMap.ts16
1 files changed, 0 insertions, 16 deletions
diff --git a/gui/src/types/budgetMap.ts b/gui/src/types/budgetMap.ts
deleted file mode 100644
index 5fa09f2..0000000
--- a/gui/src/types/budgetMap.ts
+++ /dev/null
@@ -1,16 +0,0 @@
-import { Budget, newBudgetFromDto } from "./budget";
-import { Category } from "./category";
-
-type BudgetMap<T extends { id: any }> = {
- [id in T["id"]]: Budget | null;
-};
-
-function newCategoryBudgetMapFromDto(dto: unknown): BudgetMap<Category> {
- return Object.fromEntries(
- (dto as { category_id: number; budget: unknown }[]).map(
- ({ category_id, budget }) => [category_id, newBudgetFromDto(budget)],
- ),
- );
-}
-
-export { type BudgetMap, newCategoryBudgetMapFromDto as newBudgetMapFromDto };