← Code LabTypeScript0/50 solved · 0%
Generics · medium

22. Generic Interfaces

Wrappers with dynamic types.

Define `Box<T>` with a `value` of type `T`. Implement `unwrap`.
Required in your answer: interface Box<T>value: T