SourceTermAnalysisSystem_vue/types/mapGlobalObj.d.ts
2026-05-15 10:13:06 +08:00

14 lines
426 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import EventBusTool from '@/gis/common/eventBus/eventBusTool';
// 扩展全局Window接口与现有类型合并 全局挂载EventBusTool
declare global {
interface Window {
// 声明全局EventBusTool实例
EventBusTool: typeof EventBusTool;
}
// 声明为全局变量支持不写window直接访问
const EventBusTool: Window['EventBusTool'];
}
// 确保TypeScript将此文件视为模块
export { };