UNPKG

272 BTypeScriptView Raw
1import { Command } from '../Command';
2/**
3 * A command that prints the version of the binary (`cli.binaryVersion`).
4 *
5 * Paths: `-v`, `--version`
6 */
7export declare class VersionCommand extends Command<any> {
8 static paths: string[][];
9 execute(): Promise<void>;
10}