@titan-suite/cli
Version:
The complete smart contract development tool
13 lines (12 loc) • 421 B
TypeScript
import { Command, flags } from '@oclif/command';
export default class Unlock extends Command {
static description: string;
static examples: string[];
static flags: {
help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
address: flags.IOptionFlag<string | undefined>;
password: flags.IOptionFlag<string | undefined>;
};
questions: Array<any>;
run(): Promise<void>;
}