@adinsure-ops/ops-cli
Version:
Operations CLI for working with AdInsure
13 lines (12 loc) • 515 B
TypeScript
import CommandBase from '../command.base.js';
export default class LoginRu extends CommandBase<typeof LoginRu> {
static aliases: string[];
static description: string;
static usage: string;
static examples: string[];
static flags: {
token: import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
force: import("@oclif/core/lib/interfaces/parser.js").BooleanFlag<boolean>;
};
run(): Promise<void>;
}