import { OverlayRef } from '@angular/cdk/overlay'; | |
export class ToastRef { | |
constructor(readonly overlay: OverlayRef) { } | |
close() { | |
this.overlay.dispose(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment