mirror of
https://github.com/maciejpedzich/racemash.git
synced 2024-11-12 18:03:02 +01:00
8 lines
189 B
TypeScript
8 lines
189 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
declare module '*.vue' {
|
|
import type { DefineComponent } from 'vue';
|
|
const component: DefineComponent<{}, {}, any>;
|
|
export default component;
|
|
}
|