This commit is contained in:
Warunee Tamkoo 2024-07-31 09:48:33 +07:00
parent 73d45a3d24
commit 0e87c63641
123 changed files with 310 additions and 10280 deletions

View file

@ -1,37 +0,0 @@
interface Pagination {
rowsPerPage: number;
}
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;
}
interface DataAssignment {
createdAt: string;
id: string;
including: string;
includingName: string;
period: string;
year: string;
}
export type {
Pagination,
DataOption,
NewPagination,
ItemsMenu,
DataAssignment,
};