13 lines
282 B
TypeScript
13 lines
282 B
TypeScript
declare module '*.md' {
|
|
// "unknown" would be more detailed depends on how you structure frontmatter
|
|
const attributes: Record<string, unknown>
|
|
|
|
// When "Mode.HTML" is requested
|
|
const html: string
|
|
|
|
// Modify below per your usage
|
|
export { html }
|
|
}
|
|
|
|
declare module '*.vue'
|