# Conflicts: # src/api/15_development/api.development.ts # src/modules/15_development/interface/index/Main.ts # src/modules/15_development/interface/request/Main.ts
39 lines
695 B
TypeScript
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};
|