UNPKG

@teambit/checkout

Version:
22 lines (21 loc) 707 B
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; extendedDescription: 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 | import("@teambit/cli").Report>; }