lightgallery
Version:
lightGallery is a feature-rich, modular JavaScript gallery plugin for building beautiful image and video galleries for the web and the mobile
35 lines (34 loc) • 701 B
TypeScript
export interface RotateSettings {
/**
* Enable/Disable rotate option
*/
rotate: boolean;
/**
* Rotate speed in milliseconds
*/
rotateSpeed: number;
/**
* 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;
rotateSpeed: number;
rotateLeft: boolean;
rotateRight: boolean;
flipHorizontal: boolean;
flipVertical: boolean;
};