Commit f356c4929839344ac61897004c7e9b0039afac9a

Authored by Aresn
Committed by GitHub
2 parents 10b547c5 c1b06093

Merge pull request #4449 from yangdan8/patch-2

修复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: {