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
7 lines (6 loc) • 307 B
TypeScript
import { ActionsProvider, ActionResult, PrePostCommand } from './actionsProvider.js';
export declare class PublishCommunityAction extends ActionsProvider {
getLabel(): string;
checkParameters(cmd: PrePostCommand): Promise<ActionResult | null>;
run(cmd: PrePostCommand): Promise<ActionResult>;
}