@teambit/workspace
Version:
20 lines (19 loc) • 511 B
TypeScript
import type { Command } from '@teambit/cli';
import type { Workspace } from '../workspace';
export declare class EnvsReplaceCmd implements Command {
private workspace;
name: string;
description: string;
options: never[];
group: string;
arguments: {
name: string;
description: string;
}[];
examples: {
cmd: string;
description: string;
}[];
constructor(workspace: Workspace);
report([oldEnv, env]: [string, string]): Promise<string>;
}