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
18 lines (17 loc) • 619 B
TypeScript
import { SfCommand } from '@salesforce/sf-plugins-core';
import { AnyJson } from '@salesforce/ts-types';
export default class MonitorLimits extends SfCommand<any> {
static title: string;
static description: string;
static examples: string[];
static flags: any;
static requiresProject: boolean;
protected static triggerNotification: boolean;
protected limitThresholdWarning: number;
protected limitThresholdError: number;
protected limitEntries: any[];
protected outputFile: any;
protected outputFilesRes: any;
protected debugMode: boolean;
run(): Promise<AnyJson>;
}