import Cmd from './cmd'; export default abstract class ValueCommand extends Cmd { protected abstract parse(value: string): T; execute(): Promise; }