UNPKG

clipanion

Version:

Type-safe CLI library / framework with no runtime dependencies

11 lines (10 loc) 272 B
import { Command } from '../Command'; /** * A command that prints the version of the binary (`cli.binaryVersion`). * * Paths: `-v`, `--version` */ export declare class VersionCommand extends Command<any> { static paths: string[][]; execute(): Promise<void>; }