diff --git a/source/Model/Behavior.ts b/source/Model/Behavior.ts index 37618ff..75dea14 100644 --- a/source/Model/Behavior.ts +++ b/source/Model/Behavior.ts @@ -1,128 +1,11 @@ -import { IAnyObject } from "./Renderer"; import { Emitter, EventType } from "./Emitter"; import type { Individual } from "./Individual"; import type { Group } from "./Group"; import type { Model } from "./Model"; -import type { Range } from "./Range"; -import type { Label } from "./Label"; - -type IObjectParamCacheType = { - picker: P; - objects: Q; -} - -/** - * 参数类型 - */ -type IMapBasicParamTypeKeyToType = { - "number": number; - "string": string; - "boolean": boolean; -} - -type IMapObjectParamTypeKeyToType = { - "R": IObjectParamCacheType; - "G": IObjectParamCacheType; - "LR": IObjectParamCacheType