hrms-mgt/src/modules/11_discipline/interface/index/Main.ts

40 lines
768 B
TypeScript

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