@teambit/checkout
Version:
21 lines (20 loc) • 642 B
TypeScript
import type { Command, CommandOptions } from '@teambit/cli';
import type { CheckoutMain } from './checkout.main.runtime';
export declare class RevertCmd implements Command {
private checkout;
name: string;
arguments: {
name: string;
description: string;
}[];
description: string;
group: string;
alias: string;
options: CommandOptions;
loader: boolean;
constructor(checkout: CheckoutMain);
report([componentPattern, to]: [string, string], { verbose, skipDependencyInstallation, }: {
verbose?: boolean;
skipDependencyInstallation?: boolean;
}): Promise<string>;
}