mirror of
https://github.com/fastapiadmin/FastapiAdmin.git
synced 2026-09-22 13:05:18 +00:00
9 lines
230 B
TypeScript
9 lines
230 B
TypeScript
/// <reference types="vitepress/client" />
|
|
|
|
declare module '*.vue' {
|
|
import type { DefineComponent } from 'vue'
|
|
|
|
const component: DefineComponent<Record<string, never>, Record<string, never>, any>
|
|
export default component
|
|
}
|