Type Challenges Judge

If

提出詳細

type If<C, T, F> = C extends true ? F : T
提出日時2023-12-17 13:53:57
問題If
ユーザーt-hashimoto-sun
ステータスWrong Answer
テストケース
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'>