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