14 lines
274 B
TypeScript
Raw Normal View History

2026-05-31 13:21:13 +02:00
declare module '*.vue' {
import type { ComponentOptions } from 'vue'
const Component: ComponentOptions
export default Component
}
declare module '*.md' {
import type { ComponentOptions } from 'vue'
const Component: ComponentOptions
export default Component
}