@contentstack/cli-auth
Version:
Contentstack CLI plugin for authentication activities
12 lines (11 loc) • 416 B
TypeScript
import { FlagInput } from '@contentstack/cli-utilities';
import { BaseCommand } from '../../base-command';
export default class LoginCommand extends BaseCommand<typeof LoginCommand> {
static run: any;
static description: string;
static examples: string[];
static flags: FlagInput;
static aliases: string[];
run(): Promise<any>;
login(username: string, password: string): Promise<void>;
}