hzn-cli
Version:
Open Horizon CLI toolkit helps streamline the process of preparing node agents and perform tasks between orgs environments
24 lines (23 loc) • 794 B
TypeScript
import type { Arguments, CommandBuilder } from 'yargs';
declare type Options = {
action: string;
org: string | undefined;
config_path: string | undefined;
name: string | undefined;
object_type: string | undefined;
object_id: string | undefined;
object: string | undefined;
pattern: string | undefined;
watch: string | undefined;
filter: string | undefined;
skip_config_update: string | undefined;
config_file: string | undefined;
image: string | undefined;
k8s: string | undefined;
compatibility: string | undefined;
};
export declare const command: string;
export declare const desc: string;
export declare const builder: CommandBuilder<Options, Options>;
export declare const handler: (argv: Arguments<Options>) => void;
export {};