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