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 Use `&` instead of `|` D Apply `as const` to the type parameter Show explanation