From 490d4ef47e54de5978bd1bdcb9f7b966c06c2719 Mon Sep 17 00:00:00 2001 From: LiuHao Date: Tue, 6 Jun 2023 22:20:50 +0800 Subject: [PATCH] =?UTF-8?q?add=20=E6=96=B0=E5=A2=9E=E5=85=A8=E5=B1=80ele?= =?UTF-8?q?=E7=B1=BB=E5=9E=8B=E5=A3=B0=E6=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .eslintrc-auto-import.json | 1 + src/types/element.d.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/.eslintrc-auto-import.json b/.eslintrc-auto-import.json index dd74993..74b5a0f 100644 --- a/.eslintrc-auto-import.json +++ b/.eslintrc-auto-import.json @@ -2,6 +2,7 @@ "globals": { "ComponentInternalInstance": true, "ElFormRules": true, + "CheckboxValueType": true, "PropType": true, "DateModelType": true, "UploadFile": true, diff --git a/src/types/element.d.ts b/src/types/element.d.ts index fdc6578..16d5481 100644 --- a/src/types/element.d.ts +++ b/src/types/element.d.ts @@ -26,6 +26,7 @@ declare global { declare type ElSliderInstance = InstanceType; declare type ElUploadInstance = InstanceType; + declare type CheckboxValueType = ep.CheckboxValueType; declare type ElFormRules = ep.FormRules; declare type DateModelType = ep.DateModelType; declare type UploadFile = typeof ep.UploadFile;