mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-06 03:57:49 +08:00
11 lines
318 B
TypeScript
11 lines
318 B
TypeScript
/// <reference types="./types/global.d.ts" />
|
|
/// <reference types="vite/client" />
|
|
/// <reference types="vue/macros-global" />
|
|
/// <reference types="vite-svg-loader" />
|
|
|
|
declare module '*.vue' {
|
|
import type { DefineComponent } from 'vue'
|
|
const component: DefineComponent<{}, {}, any>
|
|
export default component
|
|
}
|