UNPKG

@teambit/workspace

Version:
21 lines (20 loc) 564 B
import type { Command } from '@teambit/cli'; import type { Workspace } from '../workspace'; export declare const installAfterEnvChangesMsg: string; export declare class EnvsSetCmd implements Command { private workspace; name: string; description: string; arguments: { name: string; description: string; }[]; examples: { cmd: string; description: string; }[]; options: never[]; group: string; constructor(workspace: Workspace); report([pattern, env]: [string, string]): Promise<string>; }