9 lines
265 B
TypeScript
9 lines
265 B
TypeScript
|
|
// Mocks all files ending in `.vue` showing them as plain Vue instances/* eslint-disable */
|
||
|
|
/* eslint-disable */
|
||
|
|
declare module '*.vue' {
|
||
|
|
import { defineComponent } from 'vue';
|
||
|
|
const Component: ReturnType<typeof defineComponent>;
|
||
|
|
export default Component;
|
||
|
|
|
||
|
|
}
|