13 lines
226 B
TypeScript
13 lines
226 B
TypeScript
![]() |
// type TType = 'base' | 'mb' | 'satellite'
|
||
|
|
||
|
const baseMap = new Map()
|
||
|
const mubiaoMap = new Map()
|
||
|
const satelliteMap = new Map()
|
||
|
export const useEntity = () => {
|
||
|
return {
|
||
|
baseMap,
|
||
|
mubiaoMap,
|
||
|
satelliteMap,
|
||
|
}
|
||
|
}
|