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.

18 lines (17 loc) 481 B
import { Command } from '@oclif/command'; import { IBooleanFlag, IOptionFlag } from '@oclif/parser/lib/flags'; export interface TableItem { name: string; did: string; lastResolved: Date; published: boolean; } export default class List extends Command { static description: string; static examples: string[]; static flags: { help: IBooleanFlag<boolean>; directory: IOptionFlag<string>; }; run(): Promise<void>; }