home-page/env.d.ts

19 lines
499 B
TypeScript

/// <reference types="vite/client" />
declare module '*.md' {
import type { ComponentOptions } from 'vue'
import type { Frontmatter } from 'vite-plugin-md'
const Component: ComponentOptions
export default Component
export const frontmatter: Frontmatter
}
declare module '*.vue' {
import type { ComponentOptions } from 'vue'
const Component: ComponentOptions
export default Component
}
type MdModule = {
default: ComponentOptions;
frontmatter: Frontmatter;
}