salesforce-alm
Version:
This package contains tools, and APIs, for an improved salesforce.com developer experience.
19 lines (18 loc) • 467 B
TypeScript
declare class PackageVersionReportCommand {
static QUERY: string;
static QUERY_VERBOSE: string;
[property: string]: any;
constructor();
execute(context: any): Promise<any>;
_execute(context: any): Promise<any>;
/**
* indicates that the human readable message should be tabular
*
* @returns {[{}...]}
*/
getColumnData(): {
key: string;
label: string;
}[];
}
export = PackageVersionReportCommand;