UNPKG

459 BTypeScriptView Raw
1/**
2 * lightGallery caption for placing captions relative to the image
3 */
4import { LightGallery } from '../../lightgallery';
5import { RelativeCaptionSettings } from './lg-relative-caption-settings';
6export default class RelativeCaption {
7 core: LightGallery;
8 settings: RelativeCaptionSettings;
9 constructor(instance: LightGallery);
10 init(): void;
11 private setCaptionStyle;
12 private setRelativeCaption;
13 destroy(): void;
14}