UNPKG

json-type-cli

Version:

High-performance JSON Pointer implementation

10 lines (9 loc) 391 B
import type { Cli } from '../Cli'; import type { CliContext, CliParam } from '../types'; export declare class CliParamPlan implements CliParam { readonly param = "plan"; readonly title = "Show execution plan"; readonly createInstance: (cli: Cli, pointer: string, rawValue: unknown) => { readonly onBeforeCall: (method: string, ctx: CliContext) => Promise<void>; }; }