API รายการรอบการประเมินผลการปฏิบัติหน้าที่ราชการ

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-04-09 09:41:47 +07:00
parent fa7cab32c3
commit 233c577299
4 changed files with 67 additions and 27 deletions

View file

@ -1,6 +1,20 @@
interface DataOption {
id: string;
name: string;
}
id: string;
name: string;
}
export type {DataOption};
interface ItemsMenu {
label: string;
value: string;
icon: string;
color: string;
}
interface NewPagination {
descending: boolean;
page: number;
rowsPerPage: number;
sortBy: string;
}
export type { DataOption, ItemsMenu,NewPagination };