1 | /**
|
2 | * lightGallery caption for placing captions relative to the image
|
3 | */
|
4 | import { LightGallery } from '../../lightgallery';
|
5 | import { RelativeCaptionSettings } from './lg-relative-caption-settings';
|
6 | export 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 | }
|