salesforce-alm
Version:
This package contains tools, and APIs, for an improved salesforce.com developer experience.
19 lines (18 loc) • 502 B
TypeScript
/**
* Get a Org Snapshot record.
*/
declare class OrgSnapshotGetCommand {
private logger;
private orgSnapshotApi;
private orgSnapshotIdOrName;
constructor();
execute(context: any): Promise<import("./orgSnapshotApi").OrgSnapshot>;
/**
* returns a human readable message for a cli output
*
* @param result - the data representing the Org Snapshot
* @returns {string}
*/
getHumanSuccessMessage(result: any): string;
}
export = OrgSnapshotGetCommand;