Type Challenges Judge

Tuple to Object

提出詳細

type TupleToObject<T extends readonly string[]> = { [key in T[number]]: key }
提出日時2024-08-26 13:25:33
問題Tuple to Object
ユーザーKatsukiniwa
ステータスAccepted
テストケース
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], {}]>