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) • 395 B
TypeScript
import { SfCommand } from '@salesforce/sf-plugins-core';
import { AnyJson } from '@salesforce/ts-types';
export default class CacheClear extends SfCommand<any> {
static title: string;
static description: string;
static examples: string[];
static uiConfig: {
hide: boolean;
};
static flags: any;
static requiresProject: boolean;
run(): Promise<AnyJson>;
}