UNPKG

ngx-mat-lib

Version:

A bunch of utilities and components to use in your Angular 7+ apps!

13 lines (12 loc) 321 B
export declare enum XmatSnackBarDataTypes { success = "xmat-snack-success", fail = "xmat-snack-fail" } export interface XmatSnackBarData { message?: string; showAction: boolean; actionText?: string; actionCallback?: Function; duration?: number; type?: XmatSnackBarDataTypes; }