fear: add to orderList type

feat/issue-3/obi
Frédérik Benoist 2024-01-18 22:34:17 +01:00
parent 8a9fe74487
commit 6d9ccbc57a
1 changed files with 13 additions and 0 deletions

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 {
id: number
model: string
}
interface statusData {