UNPKG

442 BTypeScriptView Raw
1import yargs from 'yargs';
2export declare const command = "private-key <value>";
3export declare const describe = "Convert a private key to various formats and print them to stdout.";
4export declare const builder: (yargsBuilder: yargs.Argv<{}>) => yargs.Argv<yargs.Defined<{
5 value: string | undefined;
6}, "value">>;
7export declare const handler: (argv: yargs.Arguments<yargs.Defined<{
8 value: string | undefined;
9}, "value">>) => void;