mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-02 02:51:50 +00:00
7 lines
242 B
TypeScript
7 lines
242 B
TypeScript
|
|
// Mocks all files ending in `.vue` showing them as plain Vue instances
|
||
|
|
/* eslint-disable */
|
||
|
|
declare module '*.vue' {
|
||
|
|
import type { DefineComponent } from 'vue';
|
||
|
|
const component: DefineComponent<{}, {}, any>;
|
||
|
|
export default component;
|
||
|
|
}
|