[[インデックス型]]のインデックスにアクセスした対象の型。T[number]やT["id"]のような表現。
```ts
interface Human {
id: number;
name: string;
}
type Id = Human["id"];
// ^? type Id = number
type Name = Human["name"];
// ^? type Name = string
type Prop = Human[keyof Human];
// ^? type Prop = string | number
type Humans = Array<Human>;
type H = Humans[number];
// ^? type H = Human
type HId = Humans[number]["id"];
// ^? type HId = number
```
## MOC
- 📒**関連**
- [[インデックスアクセス型には値を指定できない]]
- 📜**アクティビティ**
- 📝**トラブルシューティング**