I need to generate an enumErrorList like this
Errors={
none:0,
subject:1,
content:2,
sender:4,
recipient:8
}
from an array like this
let errors=[
'none',
'subject',
'content',
'sender',
'recipient'
]
but I’m sorry I’m not very familiar with enum.