mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-02-09 09:26:24 +00:00
12 lines
174 B
JavaScript
12 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
|
|
];
|