From c1b06093809f1b86281ab9f63507691ec8d8206c Mon Sep 17 00:00:00 2001 From: yangdan8 <361100314@qq.com> Date: Wed, 5 Sep 2018 13:26:48 +0800 Subject: [PATCH] 修复webpack打包过程中报any类型错误的bug --- types/iview.components.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/iview.components.d.ts b/types/iview.components.d.ts index 1f155e3..e71fc84 100644 --- a/types/iview.components.d.ts +++ b/types/iview.components.d.ts @@ -65,8 +65,8 @@ export { Upload } from './upload'; declare const API: { version: string; - locale: (l) => void; - i18n: (fn) => void; + locale: (l:any) => void; + i18n: (fn:any) => void; install: ( Vue: Vue, opts: { -- libgit2 0.21.4