You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
458 B
TypeScript
18 lines
458 B
TypeScript
|
6 years ago
|
import { AfterViewInit, OnDestroy, ElementRef } from '@angular/core';
|
||
|
|
export declare class BlockUI implements AfterViewInit, OnDestroy {
|
||
|
|
el: ElementRef;
|
||
|
|
target: any;
|
||
|
|
autoZIndex: boolean;
|
||
|
|
baseZIndex: number;
|
||
|
|
mask: ElementRef;
|
||
|
|
_blocked: boolean;
|
||
|
|
constructor(el: ElementRef);
|
||
|
|
blocked: boolean;
|
||
|
|
ngAfterViewInit(): void;
|
||
|
|
block(): void;
|
||
|
|
unblock(): void;
|
||
|
|
ngOnDestroy(): void;
|
||
|
|
}
|
||
|
|
export declare class BlockUIModule {
|
||
|
|
}
|