ย้าย code ส่วนที่อยู่ในข้อมูลหลักไว้ module 01_metadataNew (ตัวชี้วัด, สมรรถนะ, ยุทธศาสตร์)

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-05-08 10:48:10 +07:00
parent 10a34f7ba5
commit 94b67c81ec
29 changed files with 698 additions and 214 deletions

View file

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