TypeScript Professional — Hard How do you prevent distribution in a conditional type? A Apply `as const` to the type parameter B Use `extends never` C Use `&` instead of `|` D Wrap the type parameter in a tuple: `[T] extends [U]` Show explanation