zippycli
Version:
An unofficial Zippyshare CLI
30 lines (29 loc) • 563 B
TypeScript
import { Command } from '../command';
/**
* Info command.
*/
export declare class Info extends Command {
/**
* Description.
*/
static readonly description = "display info about program";
/**
* Examples.
*/
static readonly examples: never[];
/**
* Flags.
*/
static readonly flags: {
help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
};
/**
* Arguments.
*/
static readonly args: never[];
/**
* Handler.
*/
run(): Promise<void>;
}
export default Info;