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

16 lines (15 loc) 531 B
import { SfCommand } from '@salesforce/sf-plugins-core'; import { AnyJson } from '@salesforce/ts-types'; export default class PackageVersionCreate extends SfCommand<any> { static title: string; static description: string; static examples: string[]; static flags: any; static requiresProject: boolean; protected package: string | null; protected deleteAfter: boolean; protected install: boolean; protected installKey: string | null; protected promote: boolean; run(): Promise<AnyJson>; }