6 lines
203 B
TypeScript
6 lines
203 B
TypeScript
|
/// <reference types="vite/client" />
|
||
|
declare module "*.vue" {
|
||
|
import type { DefineComponent } from "vue";
|
||
|
const vueComponent: DefineComponent<{}, {}, any>;
|
||
|
export default vueComponent;
|
||
|
}
|