50 lines
929 B
TypeScript
50 lines
929 B
TypeScript
interface DataOption {
|
|
id: string;
|
|
name: string;
|
|
}
|
|
interface investigatefactsDataRowType {
|
|
subject: string;
|
|
interrogated: string;
|
|
fault: string;
|
|
status: string;
|
|
active: string;
|
|
}
|
|
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;
|
|
}
|
|
interface MyObjectComplaintsRef {
|
|
complainantType: any
|
|
complainant: any
|
|
office: any
|
|
agency: any
|
|
topicComplaint: any
|
|
datereceive: any
|
|
dateconsideration: any
|
|
offenseDescription: any
|
|
considerationLevel: any
|
|
datewarn: any
|
|
receivecomplaints: any
|
|
petitioner: any
|
|
files: any
|
|
[key: string]: any;
|
|
}
|
|
|
|
export type {
|
|
DataOption,
|
|
investigatefactsDataRowType,
|
|
MyObjectRef,
|
|
MyObjectComplaintsRef,
|
|
};
|
|
|
|
|
|
|