mirror of
https://github.com/xiangshu233/vue3-vant4-mobile.git
synced 2025-04-05 06:22:45 +08:00
10 lines
221 B
TypeScript
10 lines
221 B
TypeScript
/* eslint-disable ts/ban-types */
|
|
/// <reference types="vite/client" />
|
|
|
|
declare module '*.vue' {
|
|
import type { DefineComponent } from 'vue'
|
|
|
|
const Component: DefineComponent<{}, {}, any>
|
|
export default Component
|
|
}
|