From 16741aaa46ace4ffcdd17d3f820b25dfa780fb27 Mon Sep 17 00:00:00 2001 From: ValdiANS Date: Fri, 17 Apr 2026 13:27:21 +0700 Subject: [PATCH] feat: create ReportDepreciation and ReportDepreciationSearchParams type --- src/types/api/report/report-expense.d.ts | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/types/api/report/report-expense.d.ts b/src/types/api/report/report-expense.d.ts index bf9b94eb..f513b249 100644 --- a/src/types/api/report/report-expense.d.ts +++ b/src/types/api/report/report-expense.d.ts @@ -52,3 +52,18 @@ export type ReportExpenseSearchParams = { category: string | null; search: string; }; + +export type ReportDepreciation = { + id: string; + flock: string; + totalCostPullet: number; + totalDepresiasi: number; + periode: string; + farm: string; + jumlahKandang: number; +}; + +export type ReportDepreciationSearchParams = { + farm: string | null; + period: string | null; +};