/** * MessageConfirmation * * The interface for all message confirmations. * */ export interface IMessageConfirmation { success: boolean; payload?: string | object; }