UNPKG

salesforce-alm

Version:

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

26 lines (25 loc) 624 B
/** * List Org Snapshots linked DevHub. */ declare class OrgSnapshotListCommand { private logger; private records; 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} */ getColumnData(): ({ key: string; label: string; format?: undefined; } | { key: string; label: string; format: (value: any) => string; })[]; } export = OrgSnapshotListCommand;