Type Challenges Judge

If

提出詳細

type If<C extends boolean, T, F> = C extends true ? T : F
提出日時2023-04-25 13:15:27
問題If
ユーザーkagankan
ステータスAccepted
テストケース
import type { Equal, Expect } from '@type-challenges/utils' type cases = [ Expect<Equal<If<true, 'a', 'b'>, 'a'>>, Expect<Equal<If<false, 'a', 2>, 2>>, ] // @ts-expect-error type error = If<null, 'a', 'b'>