@udhsin/ngx-image-viewer
Version:
A configurable Angular image viewer component, compatible with Angular 2+
13 lines (12 loc) • 376 B
TypeScript
import { OnChanges, ElementRef } from '@angular/core';
export declare class ToggleFullscreenDirective implements OnChanges {
private el;
private document;
isFullscreen: boolean;
element: any;
isEnabled: boolean;
constructor(el: ElementRef, document: any);
ngOnChanges(): void;
openFullscreen(): void;
closeFullscreen(): void;
}