mirror of
https://github.com/Readarr/Readarr
synced 2026-02-11 09:13:51 +01:00
11 lines
174 B
JavaScript
11 lines
174 B
JavaScript
export const TOP = 'top';
|
|
export const RIGHT = 'right';
|
|
export const BOTTOM = 'bottom';
|
|
export const LEFT = 'left';
|
|
|
|
export const all = [
|
|
TOP,
|
|
RIGHT,
|
|
BOTTOM,
|
|
LEFT
|
|
];
|