modal-window.d.ts 715 B

12345678910111213141516171819202122
  1. import { AfterViewInit, ElementRef, EventEmitter, NgZone, OnDestroy, OnInit } from '@angular/core';
  2. export declare class NgbModalWindow implements OnInit, AfterViewInit, OnDestroy {
  3. private _document;
  4. private _elRef;
  5. private _zone;
  6. private _closed$;
  7. private _elWithFocus;
  8. private _dialogEl;
  9. ariaLabelledBy: string;
  10. backdrop: boolean | string;
  11. centered: string;
  12. keyboard: boolean;
  13. scrollable: string;
  14. size: string;
  15. windowClass: string;
  16. dismissEvent: EventEmitter<any>;
  17. constructor(_document: any, _elRef: ElementRef<HTMLElement>, _zone: NgZone);
  18. dismiss(reason: any): void;
  19. ngOnInit(): void;
  20. ngAfterViewInit(): void;
  21. ngOnDestroy(): void;
  22. }