13 lines
291 B
TypeScript
13 lines
291 B
TypeScript
/* eslint-disable import/no-duplicates */
|
|
|
|
declare interface Window {
|
|
// extend the window
|
|
}
|
|
|
|
// with vite-plugin-md, markdowns can be treat as Vue components
|
|
declare module '*.md' {
|
|
import { ComponentOptions } from 'vue'
|
|
const component: ComponentOptions
|
|
export default component
|
|
}
|