release/1.0.1 #22

Merged
fbenoist68 merged 12 commits from release/1.0.1 into main 2024-01-27 12:31:47 +01:00
Showing only changes of commit 6d9ccbc57a - Show all commits

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 {