83 lines
1.3 KiB
TypeScript
83 lines
1.3 KiB
TypeScript
interface Pagination {
|
|
rowsPerPage: number;
|
|
}
|
|
|
|
interface DataOption {
|
|
id: string;
|
|
name: string;
|
|
}
|
|
interface DataOption2 {
|
|
id: number;
|
|
name: string;
|
|
}
|
|
|
|
interface DataOptionSys {
|
|
id: string;
|
|
name: string;
|
|
system: string;
|
|
}
|
|
interface DataOptionInsignia {
|
|
id: string;
|
|
name: string;
|
|
typeName: string;
|
|
}
|
|
|
|
interface DataOptionEducation {
|
|
label: string;
|
|
value: boolean;
|
|
}
|
|
|
|
interface DataOptionEducationLevel {
|
|
label: string;
|
|
value: string;
|
|
}
|
|
|
|
interface zipCodeOption {
|
|
id: string;
|
|
name: string;
|
|
zipCode: string;
|
|
}
|
|
|
|
interface InformationOps {
|
|
prefixOps: DataOption[];
|
|
rankOps: DataOption[];
|
|
genderOps: DataOption[];
|
|
bloodOps: DataOption[];
|
|
statusOps: DataOption[];
|
|
religionOps: DataOption[];
|
|
employeeClassOps: DataOption[];
|
|
employeeTypeOps: DataOption[];
|
|
}
|
|
|
|
interface AddressOps {
|
|
provinceOps: DataOption[];
|
|
districtOps: DataOption[];
|
|
districtCOps: DataOption[];
|
|
subdistrictOps: zipCodeOption[];
|
|
subdistrictCOps: zipCodeOption[];
|
|
}
|
|
|
|
interface InsigniaOps {
|
|
insigniaOptions: DataOptionInsignia[];
|
|
}
|
|
|
|
interface ItemTab {
|
|
name: string;
|
|
icon: string;
|
|
label: string;
|
|
}
|
|
|
|
export type {
|
|
Pagination,
|
|
DataOption,
|
|
DataOption2,
|
|
DataOptionInsignia,
|
|
zipCodeOption,
|
|
InformationOps,
|
|
AddressOps,
|
|
InsigniaOps,
|
|
DataOptionSys,
|
|
ItemTab,
|
|
DataOptionEducation,
|
|
DataOptionEducationLevel,
|
|
};
|