Radarr/frontend/src/Helpers/Props/scrollDirections.js

7 lines
188 B
JavaScript

export const NONE = 'none';
export const BOTH = 'both';
export const HORIZONTAL = 'horizontal';
export const VERTICAL = 'vertical';
export const all = [NONE, HORIZONTAL, VERTICAL, BOTH];