UNPKG

@teambit/workspace

Version:
21 lines (20 loc) 536 B
import type { Command, CommandOptions } from '@teambit/cli'; import type { Workspace } from './workspace'; export declare class UseCmd implements Command { private workspace; name: string; group: string; description: string; helpUrl: string; arguments: { name: string; description: string; }[]; alias: string; options: CommandOptions; loader: boolean; remoteOp: boolean; private: boolean; constructor(workspace: Workspace); report([id]: [string]): Promise<any>; }