Code QuizIntermediate

Using a Generic Interface

Find the missing type argument when using a generic interface.

Codetypescript
interface Box<T> {
  value: T;
}

const box: Box = { value: 42 };

What is the bug in this usage of the generic interface?