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