diff --git a/src/modules/11_discipline/interface/index/Main.ts b/src/modules/11_discipline/interface/index/Main.ts index 1a6136942..5b2148773 100644 --- a/src/modules/11_discipline/interface/index/Main.ts +++ b/src/modules/11_discipline/interface/index/Main.ts @@ -2,6 +2,20 @@ interface DataOption { id: string; name: 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; +} export type { - DataOption + DataOption, + MyObjectRef };