9
タイプ「string」の式はインデックス付けに使用できないため、要素には暗黙的に「any」タイプがあります
ReactプロジェクトでTypeScriptを試してみると、このエラーが発生します。 Element implicitly has an 'any' type because expression of type 'string' can't be used to index type '{ train_1: boolean; train_2: boolean; train_3: boolean; train_4: boolean; }'. No index signature with a parameter of type 'string' was found on type '{ train_1: boolean; train_2: boolean; train_3: boolean; train_4: boolean; …