import type { Group } from "@Model/Group"; import type { Range } from "@Model/Range"; import type { Label } from "@Model/Label"; type IObjectParamCacheType = { picker: P; objects: Q; } /** * 参数类型 */ type IMapBasicParamTypeKeyToType = { "number": number; "string": string; "boolean": boolean; "option": string; } type IMapObjectParamTypeKeyToType = { "R": IObjectParamCacheType; "G": IObjectParamCacheType; "LR": IObjectParamCacheType