Skip to content

Instantly share code, notes, and snippets.

@adrianfaciu
Created August 7, 2018 17:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adrianfaciu/e576832c66f8296ea2d4780015d50e28 to your computer and use it in GitHub Desktop.
Save adrianfaciu/e576832c66f8296ea2d4780015d50e28 to your computer and use it in GitHub Desktop.
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