mirror of
https://github.com/Readarr/Readarr.git
synced 2026-03-27 17:54:43 -04:00
9 lines
130 B
TypeScript
9 lines
130 B
TypeScript
enum TooltipPosition {
|
|
Top = 'top',
|
|
Right = 'right',
|
|
Bottom = 'bottom',
|
|
Left = 'left',
|
|
}
|
|
|
|
export default TooltipPosition;
|