import { TAnimationActions } from '../../Animations'; import { AnimationMixer } from 'three'; import { TModel3dParams } from './TModel3dParams'; import { TRawModel3d } from './TRawModel3d'; export type TModel3dEntities = Omit & Readonly<{ model3dSource: TRawModel3d; actions: TAnimationActions; mixer: AnimationMixer; }>;