import type { AcknowledgeRemoteRunRunningCommand, AcknowledgeRemoteRunStartingCommand, FailRemoteRunStartCommand, RemoteRunActivationResult, } from '../application/remoteRunActivationService'; export interface WorkerRemoteRunActivationClient { acknowledgeStarting( command: AcknowledgeRemoteRunStartingCommand, ): Promise; acknowledgeRunning( command: AcknowledgeRemoteRunRunningCommand, ): Promise; failStart( command: FailRemoteRunStartCommand, ): Promise; }