Wrappers with dynamic types.
interface Box<T>
value: T
interface Box { // TODO } function unwrap(b) { return b.value; }