UNPKG

482 BTypeScriptView Raw
1import { AfterViewInit, OnDestroy, ElementRef } from '@angular/core';
2export declare class BlockUI implements AfterViewInit, OnDestroy {
3 el: ElementRef;
4 target: any;
5 autoZIndex: boolean;
6 baseZIndex: number;
7 styleClass: string;
8 mask: ElementRef;
9 _blocked: boolean;
10 constructor(el: ElementRef);
11 blocked: boolean;
12 ngAfterViewInit(): void;
13 block(): void;
14 unblock(): void;
15 ngOnDestroy(): void;
16}
17export declare class BlockUIModule {
18}