51timapi
Version:
TimApi is a traffic related plugin for WdpApi.
14 lines (13 loc) • 416 B
TypeScript
import { EntityEidType, BasicInfoAtomType } from '../data-type';
export interface BoundType extends EntityEidType, Partial<BasicInfoAtomType> {
moving?: any;
path?: any;
boundStyle?: Partial<MoveAlongPathEntityAtomType>;
}
export interface MoveAlongPathEntityAtomType {
movingEid: string | null;
pathEid: string | null;
time: number;
bLoop: boolean;
bReverse: boolean;
}