salesforce-alm
Version:
This package contains tools, and APIs, for an improved salesforce.com developer experience.
15 lines (14 loc) • 621 B
TypeScript
declare class MdapiConvertCommand {
[property: string]: any;
constructor(force?: any);
validate(context: any): Promise<any>;
execute(context: any): any;
/**
* We are a using a two table output now, one table for the files that were converted and another one for duplicate files.
* Note that if there was already a file with same name/type but the contents are identical then no .dup file will be
* created and nothing will be shown in the output for that file.
*/
getHumanSuccessMessage(data: any): void;
static getCommandTempOrg(): string;
}
export = MdapiConvertCommand;