Update vue.d.ts

This commit is contained in:
syuilo 2020-12-11 22:15:47 +09:00
parent 89bac6bba9
commit c2c659ce04

View file

@ -1,5 +1,5 @@
declare module '*.vue' {
import type { DefineComponent } from 'vue'
const component: DefineComponent<{}, {}, any>
export default component
import type { DefineComponent } from 'vue';
const component: DefineComponent<{}, {}, any>;
export default component;
}