chore: 补充 Bug#704 迁移脚本 + 前端类型定义

This commit is contained in:
2026-06-10 09:13:05 +08:00
parent 8c42cf11b5
commit 5f00dab7ad
6 changed files with 89 additions and 0 deletions

6
healthlink-his-ui/src/env.d.ts vendored Normal file
View File

@@ -0,0 +1,6 @@
/// <reference types="vite/client" />
declare module '*.vue' {
import type { DefineComponent } from 'vue'
const component: DefineComponent<Record<string, unknown>, Record<string, unknown>, any>
export default component
}