รายการโครงการ => ผูก API รายการโครงการ

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-04-03 11:14:26 +07:00
parent bb5847a652
commit 8266808827
6 changed files with 156 additions and 84 deletions

View file

@ -8,4 +8,18 @@ interface DataOptionCheckBox {
value: string;
}
export type { DataOption, DataOptionCheckBox };
interface ItemsMenu {
label: string;
value: string;
icon: string;
color: string;
}
interface NewPagination {
descending: boolean;
page: number;
rowsPerPage: number;
sortBy: string;
}
export type { DataOption, DataOptionCheckBox, ItemsMenu, NewPagination };