HashMap

哈希映射类型,键为字符串,值为T类型或undefined
type HashMap<T> = Record<string, T | undefined>

类型: ``Record<string, T|undefined>

  • T: any

BIMFlux AI