import TransportCommand from './transport'; export default abstract class ExecCommand extends TransportCommand { private readonly uuid; protected keepAlive: boolean; protected abstract cast(value: string): T; protected abstract rawCmd: string; protected get Cmd(): string; protected postExecute(): Promise; }