blog-vue/env.d.ts

16 lines
363 B
TypeScript
Raw Normal View History

2024-07-13 22:37:36 +02:00
/// <reference types="vite/client" />
2024-07-15 20:19:43 +02:00
/// <reference types="vite-plugin-pages/client" />
2024-07-16 01:14:04 +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
}