Convert a union of primitive literals to a union of corresponding boxed types
type Boxed = Box<'hello' | 42 | true>; // String | Number | Boolean Copy
type Boxed = Box<'hello' | 42 | true>; // String | Number | Boolean
Convert a union of primitive literals to a union of corresponding boxed types