UNPKG

461 BTypeScriptView Raw
1export interface HashSettings {
2 /**
3 * Enable/Disable hash option
4 */
5 hash: boolean;
6 /**
7 * Unique id for each gallery.
8 * @description It is mandatory when you use hash plugin for multiple galleries on the same page.
9 */
10 galleryId: string;
11 /**
12 * Custom slide name to use in the url when hash plugin is enabled
13 */
14 customSlideName: boolean;
15}
16export declare const hashSettings: HashSettings;