UNPKG

lightgallery

Version:

lightGallery is a feature-rich, modular JavaScript gallery plugin for building beautiful image and video galleries for the web and the mobile

30 lines (29 loc) 594 B
export interface RotateSettings { /** * Enable/Disable rotate option */ rotate: boolean; /** * Enable rotate left. */ rotateLeft: boolean; /** * Enable rotate right. */ rotateRight: boolean; /** * Enable flip horizontal. */ flipHorizontal: boolean; /** * Enable flip vertical. */ flipVertical: boolean; } export declare const rotateSettings: { rotate: boolean; rotateLeft: boolean; rotateRight: boolean; flipHorizontal: boolean; flipVertical: boolean; };