UNPKG

lamb-web-lib

Version:

LambWebLib. Es un proyecto angular de tipo Librería. que contiene una Suit de componentes reutilizables para el proyecto [Lamb Financial](https://lamb.upeu.edu.pe).

22 lines (21 loc) 752 B
import { OnInit, OnDestroy, AfterViewInit, EventEmitter, ElementRef, Renderer2 } from '@angular/core'; export declare class LambModalWindowComponent implements OnInit, AfterViewInit, OnDestroy { private _elRef; private _renderer; private _document; private _elWithFocus; backdrop: boolean | string; keyboard: boolean; size: string; centered: boolean; windowClass: string; dismissEvent: EventEmitter<any>; readonly modalClass: string; constructor(document: any, _elRef: ElementRef, _renderer: Renderer2); backdropClick($event: any): void; escKey($event: any): void; dismiss(reason: any): void; ngOnInit(): void; ngAfterViewInit(): void; ngOnDestroy(): void; }