UNPKG

salesforce-alm

Version:

This package contains tools, and APIs, for an improved salesforce.com developer experience.

18 lines (17 loc) 483 B
/** * Delete a Org Snapshot record. */ declare class OrgSnapshotDeleteCommand { private logger; 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 = OrgSnapshotDeleteCommand;