Skip to content

Commit

Permalink
feat(shims): update shims-vue.d.ts with vue3 types
Browse files Browse the repository at this point in the history
  • Loading branch information
deepanchal committed Aug 5, 2022
1 parent b68fb40 commit 887656f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/shims-vue.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
declare module '*.vue' {
import Vue from 'vue';
export default Vue;
import type { DefineComponent } from 'vue';
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types
const component: DefineComponent<{}, {}, any>;
export default component;
}

0 comments on commit 887656f

Please sign in to comment.