UNPKG

483 BTypeScriptView Raw
1export interface MediumZoomSettings {
2 /**
3 * Enable/Disable medium like zoom experience
4 */
5 mediumZoom: boolean;
6 /**
7 * Space between the gallery outer area and images
8 */
9 margin: number;
10 /**
11 * Background color for the gallery
12 * This can be overwritten by passing background color via `lg-background-color` for each item
13 */
14 backgroundColor: string;
15}
16export declare const mediumZoomSettings: MediumZoomSettings;