1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-25 22:37:27 -04:00
Files
Radarr/frontend/src/Helpers/Props/ScrollDirection.ts
T
2023-04-29 22:47:02 -05:00

9 lines
146 B
TypeScript

enum ScrollDirection {
Horizontal = 'horizontal',
Vertical = 'vertical',
None = 'none',
Both = 'both',
}
export default ScrollDirection;