chore: upgrade deps & fix lint
This commit is contained in:
10
shims.d.ts
vendored
10
shims.d.ts
vendored
@@ -9,13 +9,15 @@ declare interface Window {
|
||||
|
||||
// with vite-plugin-vue-markdown, markdowns can be treat as Vue components
|
||||
declare module '*.md' {
|
||||
import { type DefineComponent } from 'vue'
|
||||
const component: DefineComponent<{}, {}, any>
|
||||
import type { DefineComponent } from 'vue'
|
||||
|
||||
const component: DefineComponent<object, object, any>
|
||||
export default component
|
||||
}
|
||||
|
||||
declare module '*.vue' {
|
||||
import { type DefineComponent } from 'vue'
|
||||
const component: DefineComponent<{}, {}, any>
|
||||
import type { DefineComponent } from 'vue'
|
||||
|
||||
const component: DefineComponent<object, object, any>
|
||||
export default component
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user