UNPKG

@vinlos/ngx-gallery

Version:

A simple responsive native gallery component for Angular 18.

14 lines (13 loc) 390 B
export interface INgxGalleryAction { icon: string; disabled?: boolean; titleText?: string; onClick: (event: Event, index: number) => void; } export declare class NgxGalleryAction implements INgxGalleryAction { icon: string; disabled?: boolean; titleText?: string; onClick: (event: Event, index: number) => void; constructor(action: INgxGalleryAction); }