element-plus/typings/vue-shim.d.ts

7 lines
206 B
TypeScript
Raw Normal View History

2020-07-21 20:23:49 +08:00
declare module '*.vue' {
import type { DefineComponent } from 'vue'
// eslint-disable-next-line @typescript-eslint/ban-types
const component: DefineComponent<{}, {}, any>
2020-09-21 15:39:53 +08:00
export default component
2020-07-21 20:23:49 +08:00
}