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
20 lines (19 loc) • 621 B
TypeScript
import { SfCommand } from '@salesforce/sf-plugins-core';
import { AnyJson } from '@salesforce/ts-types';
export default class MonitorAll extends SfCommand<any> {
static title: string;
static monitoringCommandsDefault: {
key: string;
title: string;
command: string;
frequency: string;
}[];
static description: string;
static examples: string[];
static flags: any;
static requiresProject: boolean;
protected static triggerNotification: boolean;
protected debugMode: boolean;
static getDefaultCommandsMarkdown(): string;
run(): Promise<AnyJson>;
}