I am trying to define a new type:
type myNewType = 'value-1' | 'value-2' | 'value-3'
Is there a way to create another type like this?
type myNewType2 = '1' | '2' | '3'
However, I want the output to remain the same:
'value-1' | 'value-2' | 'value-3'