category icon
2022-06-15
JavaScript

TypeScript における連想配列の型定義

TypeScript
profile
hikaru
Software Developer / DIY'er
ts
// keyがstring型の連想配列
const foo: { [key: string]: number; } = {};