sfdx-hardis
Version:
Swiss-army-knife Toolbox for Salesforce. Allows you to define a complete CD/CD Pipeline. Orchestrate base commands and assist users with interactive wizards
9 lines (8 loc) • 740 B
TypeScript
import { SfCommand } from '@salesforce/sf-plugins-core';
export declare class SourceRetrieve extends SfCommand<any> {
static readonly description = "sfdx-hardis wrapper for sfdx force:source:retrieve\n\n- If no retrieve constraint is sent, as assisted menu will request the list of metadatas to retrieve\n- If no org is selected , an assisted menu will request the user to choose one\n\n[See documentation of Salesforce command](https://developer.salesforce.com/docs/atlas.en-us.sfdx_cli_reference.meta/sfdx_cli_reference/cli_reference_force_source.htm#cli_reference_force_source_retrieve)\n";
static readonly examples: never[];
static readonly requiresProject = true;
static readonly flags: any;
run(): Promise<any>;
}