Type Challenges Judge

Tuple to Object

提出詳細

type TupleToObject<T extends readonly any[]> = { [K in T[number]]: K; }
提出日時2023-05-09 05:00:18
問題Tuple to Object
ユーザーtsutsutaku
ステータスWrong Answer
テストケース
import type { Equal, Expect } from '@type-challenges/utils' const tuple = ['tesla', 'model 3', 'model X', 'model Y'] as const type cases = [ Expect<Equal<TupleToObject<typeof tuple>, { tesla: 'tesla'; 'model 3': 'model 3'; 'model X': 'model X'; 'model Y': 'model Y' }>>, ] // @ts-expect-error type error = TupleToObject<[[1, 2], {}]>