import { EntityEidType, BasicInfoAtomType } from '../data-type'; export interface BoundType extends EntityEidType, Partial { moving?: any; path?: any; boundStyle?: Partial; } export interface MoveAlongPathEntityAtomType { movingEid: string | null; pathEid: string | null; time: number; bLoop: boolean; bReverse: boolean; }