@rdkmaster/jigsaw-labs
Version:
Jigsaw, the next generation component set for RDK
13 lines (12 loc) • 586 B
TypeScript
import { ElementRef, TemplateRef, Type } from "@angular/core";
import { IPopupable, PopupInfo, PopupService } from "./popup.service";
export declare class LoadingService {
private _popupService;
constructor(_popupService: PopupService);
show(blockTo?: ElementRef): PopupInfo;
show(blockBy?: Type<IPopupable>): PopupInfo;
show(blockBy?: TemplateRef<any>): PopupInfo;
show(blockTo?: ElementRef, blockBy?: Type<IPopupable>): PopupInfo;
show(blockTo?: ElementRef, blockBy?: TemplateRef<any>): PopupInfo;
private static _getOptions(elementRef);
}