@fivethree/core
Version:
Fivethree Core Components
13 lines (12 loc) • 411 B
TypeScript
import { OnInit, ElementRef, EventEmitter } from '@angular/core';
import { SafeResourceUrl } from '@angular/platform-browser';
export declare class FivGalleryImage implements OnInit {
src: string | SafeResourceUrl;
originalSrc: string | SafeResourceUrl;
index: number;
thumbnail: ElementRef;
click: EventEmitter<FivGalleryImage>;
open(): void;
constructor();
ngOnInit(): void;
}