Files
bim_engine/demo-vue/src/vite-env.d.ts

20 lines
322 B
TypeScript
Raw Normal View History

2025-12-04 18:41:11 +08:00
/// <reference types="vite/client" />
declare module '*.vue' {
import type { DefineComponent } from 'vue'
const component: DefineComponent<{}, {}, any>
export default component
}
// 声明全局 SDK 类型
declare global {
interface Window {
LyzBimEngineSDK: {
BimEngine: any;
};
}
}
export {}