RED-7649: Added raw error toaster.

This commit is contained in:
Nicoleta Panaghiu 2023-09-29 14:39:20 +03:00
parent 6dc910c4ca
commit 14f4f00898

View File

@ -65,6 +65,10 @@ export class Toaster {
return this._toastr.error(resultedMsg, options?.title, options);
}
rawError(message: string) {
return this._toastr.error(message);
}
info(message: string, options?: Partial<ToasterOptions>): ActiveToast<unknown> {
return this.#showToastNotification(message, NotificationType.INFO, options);
}