mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-20 21:54:25 -04:00
1ef6c60318
(cherry picked from commit bdcfef80d627e777d7932c54cda04cbe7c656ffc)
9 lines
130 B
TypeScript
9 lines
130 B
TypeScript
enum TooltipPosition {
|
|
Top = 'top',
|
|
Right = 'right',
|
|
Bottom = 'bottom',
|
|
Left = 'left',
|
|
}
|
|
|
|
export default TooltipPosition;
|