hrms-mgt/src/modules/15_development/interface/index/Main.ts
STW_TTTY\stwtt 5c1747262f Merge branch 'develop' into devTee
# Conflicts:
#	src/api/15_development/api.development.ts
#	src/modules/15_development/interface/index/Main.ts
#	src/modules/15_development/interface/request/Main.ts
2024-04-03 17:13:53 +07:00

39 lines
695 B
TypeScript

interface DataOption {
id: string;
name: string;
}
interface DataOptionCheckBox {
label: string;
value: string;
}
interface FormFilter {
page: number;
pageSize: number;
keyword: string;
type: string;
year:number
posType: string;
posLevel: string;
retireYear: string | null;
rangeYear: { min: number; max: number };
isShowRetire: boolean | null;
isProbation: boolean | null;
}
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 ,FormFilter};