UNPKG

salesforce-alm

Version:

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

23 lines (22 loc) 525 B
declare class MdapiPullCommand { [property: string]: any; constructor(); validate(context: any): any; getPreExecuteMessage({ orgId, username }: { orgId: any; username: any; }): any; execute(context: any): Promise<any[] | { pulledSource: any[]; }>; /** * this indicated to index.js this command should produce tabular output. * * @returns {*[]} */ getColumnData(): { key: string; label: any; }[]; } export = MdapiPullCommand;