Commit c1b06093809f1b86281ab9f63507691ec8d8206c

Authored by yangdan8
Committed by GitHub
1 parent f9e857ce

修复webpack打包过程中报any类型错误的bug

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
types/iview.components.d.ts
@@ -65,8 +65,8 @@ export { Upload } from './upload'; @@ -65,8 +65,8 @@ export { Upload } from './upload';
65 65
66 declare const API: { 66 declare const API: {
67 version: string; 67 version: string;
68 - locale: (l) => void;  
69 - i18n: (fn) => void; 68 + locale: (l:any) => void;
  69 + i18n: (fn:any) => void;
70 install: ( 70 install: (
71 Vue: Vue, 71 Vue: Vue,
72 opts: { 72 opts: {