Skip to content

Commit

Permalink
fix(chore): 修复 Vue.use(WujieVue) 时类型错误 (#382)
Browse files Browse the repository at this point in the history
Co-authored-by: marstonchen <marstonchen@tencent.com>
  • Loading branch information
Marstonchan and marstonchen authored Feb 8, 2023
1 parent e41c217 commit f293697
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/wujie-vue2/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import Vue from "vue";
import { VueConstructor } from "vue";
import { bus, preloadApp, destroyApp, setupApp } from "wujie";

declare const WujieVue: {
bus: typeof bus;
setupApp: typeof setupApp;
preloadApp: typeof preloadApp;
destroyApp: typeof destroyApp;
install: (Vue: Vue) => void;
install: (Vue: VueConstructor) => void;
};

export default WujieVue;

0 comments on commit f293697

Please sign in to comment.