yl-frontend/src/env.d.ts

13 lines
342 B
TypeScript
Raw Normal View History

2024-12-05 21:56:49 +08:00
/// <reference types="vite/client" />
declare module '*.vue' {
import type { DefineComponent } from 'vue'
const component: DefineComponent<{}, {}, any>
export default component
}
declare module '@element-plus/icons-vue' {
import type { Component } from 'vue'
const content: { [key: string]: Component }
export default content
}