UNPKG

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

10 lines (9 loc) 323 B
import { SfCommand } from '@salesforce/sf-plugins-core'; import { AnyJson } from "@salesforce/ts-types"; export default class ProjectDeployStart extends SfCommand<any> { static description: string; static aliases: string[]; static flags: any; static requiresProject: boolean; run(): Promise<AnyJson>; }