You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
GCSGUI/src/global.d.ts

15 lines
295 B
TypeScript

// import * as Cesium from 'cesium'
import type { Cesium, Viewer } from 'cesium'
// 扩展全局变量
declare global {
// 定义全局Cesium类型
// const Cesium: Cesium
// 允许扩展 Window
interface Window {
Cesium: Cesium
CESIUM_BASE_URL: string
viewer: Viewer
}
}