初級 › 必須プロパティの書き忘れエラーの原因と直し方 › パターン3
必須プロパティの書き忘れエラーの原因と直し方
interfaceで定義した必須プロパティを、オブジェクトリテラルで指定し忘れたときに出るエラーです。
1 interface Item { 2 name: string; 3 price: number; 4 } 5 const item: Item = ___________________________; ^ 6 console.log(item.price);
main.ts(5,7): error TS2741: Property 'name' is missing in type '{ price: number; }' but required in type 'Item'.
空欄を埋めてコンパイルを通す
Itemにはnameも必須です。priceだけでは必要なプロパティが揃っていません。
次の問題