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; +};