Use typescript enum instead of list of strings

[MAILPOET-2809]
This commit is contained in:
Pavel Dohnal
2020-04-28 10:35:26 +02:00
committed by Veljko V
parent d8c461f7d5
commit ce6885d53c
3 changed files with 15 additions and 6 deletions

View File

@@ -0,0 +1,7 @@
enum HorizontalAlignment {
Left = 'left',
Center = 'center',
Right = 'right',
}
export default HorizontalAlignment;