UNPKG

@decentralized-identity/ion-cli

Version:

A Command Line Interface (CLI) to make working with the ION network and using ION DIDs easy peasy lemon squeezy.

21 lines (20 loc) 723 B
import { Command, flags } from '@oclif/command'; export default class New extends Command { static description: string; static examples: string[]; static flags: { help: import("@oclif/parser/lib/flags").IBooleanFlag<void>; directory: flags.IOptionFlag<string | undefined>; curve: flags.IOptionFlag<string>; kid: flags.IOptionFlag<string>; input: flags.IOptionFlag<string | undefined>; jwk: flags.IOptionFlag<string | undefined>; escape: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>; }; static args: { name: string; required: boolean; description: string; }[]; run(): Promise<void>; }