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

12 lines (11 loc) 585 B
import { NotifProviderRoot } from "./notifProviderRoot.js"; import { UtilsNotifs as utilsNotifs } from "./utils.js"; import type { NotifMessage } from "./types.js"; export declare abstract class NotifProvider { static getInstances(): NotifProviderRoot[]; static postNotifications(notifMessage: NotifMessage): Promise<void>; getLabel(): string; postNotification(notifMessage: string, buttons?: any[], attachments?: any[]): Promise<void>; } export declare const UtilsNotifs: typeof utilsNotifs; export type { NotifMessage, NotifButton, NotifSeverity } from "./types.js";