@teambit/renaming
Version:
18 lines (17 loc) • 535 B
TypeScript
import type { Command, CommandOptions } from '@teambit/cli';
import type { RenamingMain } from './renaming.main.runtime';
export declare class ScopeRenameOwnerCmd implements Command {
private renaming;
name: string;
description: string;
arguments: {
name: string;
description: string;
}[];
options: CommandOptions;
group: string;
constructor(renaming: RenamingMain);
report([oldName, newName]: [string, string], { refactor }: {
refactor?: boolean;
}): Promise<string>;
}