mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-15 01:23:53 -07:00
6 lines
188 B
JavaScript
6 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];
|