UNPKG

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

9 lines (8 loc) 317 B
import type { NotifMessage } from "./types.js"; export declare abstract class NotifProviderRoot { protected token: string; getLabel(): string; isApplicableForNotif(notifMessage: NotifMessage): boolean; isUserNotifProvider(): boolean; postNotification(notifMessage: NotifMessage): Promise<void>; }