2021-08-31 18:09:59 +02:00
|
|
|
// Mocks all files ending in `.vue` showing them as plain Vue instances/* eslint-disable */
|
|
|
|
|
/* eslint-disable */
|
|
|
|
|
declare module '*.vue' {
|
2022-02-21 13:40:52 +01:00
|
|
|
import type { defineComponent } from 'vue';
|
2021-08-31 18:09:59 +02:00
|
|
|
const Component: ReturnType<typeof defineComponent>;
|
|
|
|
|
export default Component;
|
|
|
|
|
|
|
|
|
|
}
|
2024-07-31 15:02:30 +02:00
|
|
|
|
|
|
|
|
declare module '*.png' {
|
|
|
|
|
const value: string;
|
|
|
|
|
export default value;
|
|
|
|
|
}
|