import { EntityEidType, VisibleAtomType, BasicInfoAtomType, TransformAtomType, CoordType, RotatorType, ScaleType } from '../data-type'; export interface GroupType extends EntityEidType, Partial, Partial, Partial { children?: Array; } export interface EntityChildrenAtomType { childrenEids: Array; } export interface WdpGroupTransformAtomType { location: CoordType; rotator: RotatorType; scale3d: ScaleType; }