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

34 lines
556 B
TypeScript
Raw Normal View History

interface DataOption {
id: string;
name: string;
}
interface investigatefactsDataRowType {
subject: string;
interrogated: string;
fault: string;
status: string;
active: string;
}
2023-10-18 13:34:58 +07:00
interface MyObjectRef {
orderType: any;
orderBy: any;
listInvestigation: any,
authority: any,
orderNumber: any,
dateYear: any,
date: any,
authorityPosition: any,
subject: any,
mistakeDetail: any,
[key: string]: any;
}
export type {
2023-10-18 13:34:58 +07:00
DataOption,
investigatefactsDataRowType,
MyObjectRef,
};