UNPKG

@teambit/workspace

Version:
20 lines (19 loc) 605 B
import type { Command, CommandOptions } from '@teambit/cli'; import type { Workspace } from './workspace'; export declare class PatternCommand implements Command { private workspace; name: string; alias: string; description: string; extendedDescription: string; examples: { cmd: string; description: string; }[]; group: string; private: boolean; options: CommandOptions; constructor(workspace: Workspace); report([pattern]: [string]): Promise<string>; json([pattern]: [string]): Promise<import("@teambit/component-id").ComponentID[]>; }