2018-06-05 18:50:06 -07:00

20 lines
592 B
TypeScript

// tslint:disable:no-global-tslint-disable file-header
import { Command, Option } from '../models/command';
export interface Options {
keyword: string;
search?: boolean;
}
export default class GetSetCommand extends Command {
public readonly name = 'getset';
public readonly description = 'Deprecated in favor of config command.';
public readonly arguments: string[] = [];
public readonly options: Option[] = [];
public readonly hidden = true;
public async run(_options: Options) {
this.logger.warn('get/set have been deprecated in favor of the config command.');
}
}