51timapi
Version:
TimApi is a traffic related plugin for WdpApi.
13 lines (12 loc) • 509 B
TypeScript
import { EntityEidType, VisibleAtomType, BasicInfoAtomType, TransformAtomType, CoordType, RotatorType, ScaleType } from '../data-type';
export interface GroupType extends EntityEidType, Partial<BasicInfoAtomType>, Partial<TransformAtomType>, Partial<VisibleAtomType> {
children?: Array<any>;
}
export interface EntityChildrenAtomType {
childrenEids: Array<string>;
}
export interface WdpGroupTransformAtomType {
location: CoordType;
rotator: RotatorType;
scale3d: ScaleType;
}