import CpuInterface from '../../CpuInterface'; import StateMachineInterface from '../StateMachineInterface'; export default interface NextStep { (operand: number, state: CpuInterface.State): StateMachineInterface.Result; }