1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-26 22:46:53 -04:00

Convert Button to TypeScript

(cherry picked from commit 63b4998c8e51d0d2b8b51133cbb1fd928394a7e6)

Closes #10345
This commit is contained in:
Treycos
2024-08-26 02:20:52 +02:00
committed by Bogdan
parent 0d6ce5ea49
commit 4503c3d36e
3 changed files with 35 additions and 54 deletions
+5
View File
@@ -0,0 +1,5 @@
export const LEFT = 'left';
export const CENTER = 'center';
export const RIGHT = 'right';
export const all = [LEFT, CENTER, RIGHT];