onFadeFinished(event: AnimationEvent) { | |
const { toState } = event; | |
const isFadeOut = (toState as ToastAnimationState) === 'closing'; | |
const itFinished = this.animationState === 'closing'; | |
if (isFadeOut && itFinished) { | |
this.close(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment