type Record<Keys extends string | number | symbol, Value> = { [Key in Keys]: Value; }; type Evens = Record<keyof List, boolean>; type EvensTwo = ...
確定! 回上一頁