UNPKG

465 BTypeScriptView Raw
1import { ShareSettings } from './lg-share-settings';
2import { LightGallery } from '../../lightgallery';
3export default class Share {
4 core: LightGallery;
5 settings: ShareSettings;
6 private shareOptions;
7 constructor(instance: LightGallery);
8 init(): void;
9 private getShareListHtml;
10 setLgShareMarkup(): void;
11 private onAfterSlide;
12 private getShareListItemHTML;
13 private getDefaultShareOptions;
14 destroy(): void;
15}