1
0
mirror of synced 2025-12-07 22:08:17 +08:00
Files
cook/src/shims.d.ts
2022-04-13 22:41:22 +08:00

17 lines
412 B
TypeScript

declare interface Window {
// extend the window
}
// with vite-plugin-md, markdowns can be treat as Vue components
declare module '*.md' {
import { type DefineComponent } from 'vue'
const component: DefineComponent<{}, {}, any>
export default component
}
declare module '*.vue' {
import { type DefineComponent } from 'vue'
const component: DefineComponent<{}, {}, any>
export default component
}