UNPKG

json-type-cli

Version:

High-performance JSON Pointer implementation

11 lines (10 loc) 375 B
import type { Cli } from '../Cli'; import type { CliParam } from '../types'; export declare class CliParamVersion implements CliParam { readonly param = "version"; readonly short = "v"; readonly title = "Print version and exit"; readonly createInstance: (cli: Cli, pointer: string, value: unknown) => { readonly onParam: () => Promise<void>; }; }