import { TFsmWrapper } from '../../Fsm'; import { TActorStates } from './TActorStates'; export type TWithActorStates = Readonly<{ states: TActorStates; setAnimationsFsm: (fsm: TFsmWrapper) => void; findAnimationsFsm: () => TFsmWrapper | undefined; getAnimationsFsm: () => TFsmWrapper | never; }>;