UNPKG

json-type-cli

Version:

High-performance JSON Pointer implementation

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