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.
42 lines
1.2 KiB
TypeScript
42 lines
1.2 KiB
TypeScript
import { ElementRef, Renderer2, AfterViewInit, OnDestroy, ChangeDetectorRef } from '@angular/core';
|
|
export declare class Lightbox implements AfterViewInit, OnDestroy {
|
|
el: ElementRef;
|
|
renderer: Renderer2;
|
|
private cd;
|
|
images: any[];
|
|
type: string;
|
|
style: any;
|
|
styleClass: string;
|
|
appendTo: any;
|
|
easing: 'ease-out';
|
|
effectDuration: any;
|
|
autoZIndex: boolean;
|
|
baseZIndex: number;
|
|
visible: boolean;
|
|
loading: boolean;
|
|
currentImage: any;
|
|
captionText: string;
|
|
zindex: any;
|
|
panel: any;
|
|
index: number;
|
|
mask: any;
|
|
preventDocumentClickListener: boolean;
|
|
documentClickListener: any;
|
|
constructor(el: ElementRef, renderer: Renderer2, cd: ChangeDetectorRef);
|
|
onImageClick(event: any, image: any, i: any, content: any): void;
|
|
ngAfterViewInit(): void;
|
|
onLinkClick(event: any, content: any): void;
|
|
displayImage(image: any): void;
|
|
show(): void;
|
|
hide(event: any): void;
|
|
center(): void;
|
|
onImageLoad(event: any, content: any): void;
|
|
prev(placeholder: any): void;
|
|
next(placeholder: any): void;
|
|
readonly leftVisible: boolean;
|
|
readonly rightVisible: boolean;
|
|
ngOnDestroy(): void;
|
|
}
|
|
export declare class LightboxModule {
|
|
}
|