hrms-mgt/src/modules/11_discipline/interface/index/Main.ts
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 df90bfa45b interface
2023-10-19 15:37:39 +07:00

39 lines
638 B
TypeScript

interface DataOption {
id: string;
name: string;
}
interface investigatefactsDataRowType {
subject: string;
interrogated: string;
fault: string;
status: string;
active: string;
}
interface investigateDisDataRowType {
subject: string;
interrogated: string;
fault: string;
penaltyLevel: string;
caseFault: string;
dateInvestigate: string;
status: string;
active: string;
}
interface directorType {
nameDirector: string;
position: string;
duty: string;
email: string;
telephone: string;
}
export type {
DataOption,
investigatefactsDataRowType,
investigateDisDataRowType,
directorType,
};