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

16 lines
253 B
TypeScript

interface DataOption {
id: string;
name: string;
}
interface investigatefactsDataRowType {
subject: string;
interrogated: string;
fault: string;
status: string;
active: string;
}
export type {
DataOption,
investigatefactsDataRowType
};