salesforce-alm
Version:
This package contains tools, and APIs, for an improved salesforce.com developer experience.
19 lines (18 loc) • 491 B
TypeScript
/**
* Create a snapshot of given scratch source org.
*/
declare class OrgSnapshotCreateCommand {
private logger;
private orgSnapshotApi;
constructor();
execute(context: any): any;
_getSourceOrgId(context: any): any;
/**
* returns a human readable message for a cli output
*
* @param result - the data representing the Org Snapshot
* @returns {string}
*/
getHumanSuccessMessage(result: any): string;
}
export = OrgSnapshotCreateCommand;