Co-authored-by: Andrew Bastin <andrewbastin.k@gmail.com> Co-authored-by: Anwarul Islam <anwaarulislaam@gmail.com>
6 lines
151 B
TypeScript
6 lines
151 B
TypeScript
declare module '*.vue' {
|
|
import { defineComponent } from 'vue';
|
|
const Component: ReturnType<typeof defineComponent>;
|
|
export default Component;
|
|
}
|