@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.
17 lines (16 loc) • 494 B
TypeScript
import { Command } from '@oclif/command';
export default class Public extends Command {
static description: string;
static examples: string[];
static flags: {
help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
escape: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
};
static args: {
name: string;
required: boolean;
description: string;
strict: boolean;
}[];
run(): Promise<void>;
}