I can use ToastrService.success/error/warning/info()
without problem,
but when i use ToastrService.show()
i don't know which correct string type i should send
i tried send a enum like this:
export enum ToastType {
Success = 'success',
Error = 'error',
Info = 'info',
Warning = 'warning'
}
but the component lose the styles.