UNPKG

@teambit/workspace

Version:
17 lines (16 loc) 473 B
import type { Command } from '@teambit/cli'; import type { Workspace } from '../workspace'; export declare class ScopeSetCmd implements Command { private workspace; name: string; description: string; arguments: { name: string; description: string; }[]; options: never[]; group: string; extendedDescription: string; constructor(workspace: Workspace); report([scopeName, pattern]: [string, string]): Promise<string>; }