fear: add to orderList type

This commit is contained in:
Frédérik Benoist 2024-01-18 22:34:17 +01:00
parent 8a9fe74487
commit 6d9ccbc57a

View File

@ -1,5 +1,18 @@
export interface OrderListStatistics {
title: string
value: number
icon: string
}
export interface OrderList {
total: number
statistics: OrderListStatistics[]
orders: Order[]
}
interface meta { interface meta {
id: number id: number
model: string
} }
interface statusData { interface statusData {