39 lines
638 B
TypeScript
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,
|
|
};
|