From 258c0b579c74e4737d8e84507a95e394bb332d6d Mon Sep 17 00:00:00 2001 From: TimSpan Date: Fri, 15 Nov 2024 15:44:41 +0800 Subject: [PATCH] Update global.d.ts --- policeManagement/src/global.d.ts | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) 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;