From 43a56fa3bc4f672e8128ffd390f8b06eec92379d Mon Sep 17 00:00:00 2001 From: cexbrayat Date: Fri, 16 Oct 2020 19:08:22 +0200 Subject: [PATCH] fix: update vue shims to use DefineComponent --- src/vueShims.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/vueShims.d.ts b/src/vueShims.d.ts index e875bbea9..a99cf76cc 100644 --- a/src/vueShims.d.ts +++ b/src/vueShims.d.ts @@ -1,5 +1,5 @@ declare module '*.vue' { - // TODO: Figure out the typing for this - import Vue from 'vue' - export default any + import type { DefineComponent } from 'vue' + const component: DefineComponent + export default component }