10 lines
243 B
TypeScript
10 lines
243 B
TypeScript
declare module '*.vue' {
|
|
import type { DefineComponent } from 'vue'
|
|
const component: DefineComponent<{}, {}, any>
|
|
export default component
|
|
}
|
|
|
|
declare module 'vue' {
|
|
export * from '@vue/runtime-core'
|
|
export * from '@vue/runtime-dom'
|
|
} |