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
14 lines (13 loc) • 581 B
TypeScript
import { SfCommand } from '@salesforce/sf-plugins-core';
import { AnyJson } from "@salesforce/ts-types";
export declare class PackageXmlRemove extends SfCommand<any> {
static readonly description = "Removes the content of a package.xml file matching another package.xml file";
static readonly examples: string[];
static readonly requiresProject = false;
static readonly flags: any;
protected packageXmlFile: string;
protected removePackageXmlFile: string;
protected removedOnly: boolean;
protected outputFile: string;
run(): Promise<AnyJson>;
}