mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-21 08:56:41 +08:00
8 lines
186 B
TypeScript
8 lines
186 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
declare module '*.vue' {
|
|
import type { DefineComponent } from 'vue'
|
|
const component: DefineComponent<{}, {}, any>
|
|
export default component
|
|
}
|