ts/src/hooks/entity.ts

13 lines
226 B
TypeScript
Raw Normal View History

2025-01-06 01:18:58 +00:00
// type TType = 'base' | 'mb' | 'satellite'
const baseMap = new Map()
const mubiaoMap = new Map()
const satelliteMap = new Map()
export const useEntity = () => {
return {
baseMap,
mubiaoMap,
satelliteMap,
}
}