import { TemplateRef } from '@angular/core'; /** * Responsive options of the component. * @group Interface */ export interface GalleriaResponsiveOptions { /** * Breakpoint for responsive mode. Exp; @media screen and (max-width: ${breakpoint}) {...} */ breakpoint: string; /** * The number of visible items on breakpoint. */ numVisible: number; } /** * Defines valid templates in Galleria. * @group Templates */ export interface GalleriaTemplates { /** * Custom template of header. */ header(): TemplateRef; /** * Custom template of footer. */ footer(): TemplateRef; /** * Custom template of indicator. * @param {Object} context - indicator data. */ indicator(context: { /** * Index of the item. */ $implicit: any; }): TemplateRef<{ $implicit: any; }>; /** * Custom template of closeicon. */ closeicon(): TemplateRef; /** * Custom template of itemnexticon. */ itemnexticon(): TemplateRef; /** * Custom template of itempreviousicon. */ itempreviousicon(): TemplateRef; /** * Custom template of previousthumbnailicon. */ previousthumbnailicon(): TemplateRef; /** * Custom template of nextthumbnailicon. */ nextthumbnailicon(): TemplateRef; /** * Custom template of caption. * @param {Object} context - item data. */ caption(context: { /** * Item instance. */ $implicit: any; }): TemplateRef<{ $implicit: any; }>; /** * Custom template of thumbnail. * @param {Object} context - item data. */ thumbnail(context: { /** * Item instance. */ $implicit: any; }): TemplateRef<{ $implicit: any; }>; /** * Custom template of item. * @param {Object} context - item data. */ item(context: { /** * Item instance. */ $implicit: any; }): TemplateRef<{ $implicit: any; }>; }