mirror of
https://github.com/lemeow125/Ivy-Frontend.git
synced 2025-05-14 10:31:07 +08:00
Recent transactions and total products now functional in dashboard
This commit is contained in:
parent
3344ec1510
commit
3b565cfd34
4 changed files with 55 additions and 55 deletions
|
@ -9,6 +9,17 @@ export interface Product {
|
|||
quantity: number;
|
||||
}
|
||||
|
||||
export interface ProductLogList {
|
||||
ProductLogs: ProductLog[];
|
||||
}
|
||||
|
||||
export interface ProductLog {
|
||||
history_id: number;
|
||||
name: string;
|
||||
quantity: string;
|
||||
history_date: string;
|
||||
}
|
||||
|
||||
// Redux Interfaces
|
||||
export interface LoginState {
|
||||
logged_in: {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue