diff --git a/policeManagement/src/global.d.ts b/policeManagement/src/global.d.ts index 62be6a1..cee3553 100644 --- a/policeManagement/src/global.d.ts +++ b/policeManagement/src/global.d.ts @@ -1,3 +1,5 @@ + +// global.d.ts不能出现 export 关键字否则这个文件会失效 declare const __APP_ENV: ImportMetaEnv; class TreeNodeVo> { value: T; @@ -18,7 +20,7 @@ interface JsonResult { } -export interface SecurityUnitPagerQueryParams { +interface SecurityUnitPagerQueryParams { /** 名称 **/ name?: string; /** 社会编码 **/ @@ -34,14 +36,7 @@ interface BaseEnum { value: T; label: string } -class TreeNodeVo> { - value: T; - parentValue: T; - label: string; - orderIndex?: number; - children?: TreeNodeVo[] - extData?: E; -} + interface Grid { //栅格占据的列数 span?: number;