13 lines
342 B
TypeScript
13 lines
342 B
TypeScript
|
/// <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
|
||
|
}
|