13 lines
356 B
TypeScript
13 lines
356 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
|
|
}
|
|
|
|
type MdModule = {
|
|
default: ComponentOptions;
|
|
frontmatter: Frontmatter;
|
|
} |