@teambit/export
Version:
17 lines (16 loc) • 503 B
TypeScript
import type { Command, CommandOptions } from '@teambit/cli';
import type { ScopeMain } from '@teambit/scope';
export declare class ResumeExportCmd implements Command {
private scope;
name: string;
description: string;
extendedDescription: string;
alias: string;
options: CommandOptions;
loader: boolean;
group: string;
private: boolean;
remoteOp: boolean;
constructor(scope: ScopeMain);
report([exportId, remotes]: [string, string[]]): Promise<string>;
}