beamgrid

What is the type of `Result`?

type IsJavaGood<T extends boolean> = T extends false
    ? "Definitely not"
    : "You must be kidding";
 
type Result = IsJavaGood<false>;

Question 1 of 1