9 lines
167 B
TypeScript
9 lines
167 B
TypeScript
declare module '*.vue' {
|
|
import type { ComponentOptions } from 'vue'
|
|
|
|
const comp: ComponentOptions
|
|
export default comp
|
|
}
|
|
|
|
declare const __VUEPRESS_DEV__: string
|