[HXCS-1166] add templateRef to SnackBarData interface

This commit is contained in:
Adriano Costa
2023-03-15 17:12:35 +01:00
parent a60a1683c1
commit f4215ca6f8
@@ -15,6 +15,8 @@
* limitations under the License. * limitations under the License.
*/ */
import { TemplateRef } from '@angular/core';
export interface SnackBarData { export interface SnackBarData {
actionLabel?: string; actionLabel?: string;
actionIcon?: string; actionIcon?: string;
@@ -22,4 +24,5 @@ export interface SnackBarData {
message: string; message: string;
showAction?: boolean; showAction?: boolean;
callActionOnIconClick?: boolean; callActionOnIconClick?: boolean;
templateRef?: TemplateRef<any>;
} }