UNPKG

@teambit/export

Version:
22 lines (21 loc) 852 B
import type { Command, CommandOptions } from '@teambit/cli'; import type { ExportMain, ExportResult } from './export.main.runtime'; export declare class ExportCmd implements Command { private exportMain; name: string; description: string; arguments: { name: string; description: string; }[]; extendedDescription: string; alias: string; helpUrl: string; options: CommandOptions; loader: boolean; group: string; remoteOp: boolean; constructor(exportMain: ExportMain); report([ids]: [string[]], { eject, all, allVersions, originDirectly, ignoreMissingArtifacts, resume, headOnly, forkLaneNewScope, openBrowser, verbose, }: any): Promise<string>; json([ids]: [string[]], { eject, all, allVersions, originDirectly, ignoreMissingArtifacts, resume, }: any): Promise<ExportResult>; }