- ปรับเมนู (ใหม่)

- ปรับคำสั่ง
This commit is contained in:
Warunee Tamkoo 2024-01-12 13:54:47 +07:00
parent ed7c6e9f07
commit ada9644df7
19 changed files with 448 additions and 15 deletions

View file

@ -0,0 +1,10 @@
interface Pagination {
rowsPerPage: number;
}
interface DataOption {
id: string;
name: string;
}
export type { Pagination, DataOption };

View file

@ -0,0 +1,14 @@
interface DataSumCalendarObject {
id: number;
monthFull: String;
count: number;
color: String;
}
interface DataListsObject {
id: number;
count: number;
name: string;
}
export type { DataSumCalendarObject, DataListsObject };