import { animate, state, style, transition, trigger } from "@angular/animations"; import { Component } from "@angular/core"; import { Toast as BaseToastrComponent } from "ngx-toastr"; @Component({ template: ` `, animations: [ trigger("flyInOut", [ state("inactive", style({ opacity: 0 })), state("active", style({ opacity: 1 })), state("removed", style({ opacity: 0 })), transition("inactive => active", animate("{{ easeTime }}ms {{ easing }}")), transition("active => removed", animate("{{ easeTime }}ms {{ easing }}")), ]), ], preserveWhitespaces: false, }) export class BitwardenToastrComponent extends BaseToastrComponent {}