๐Ÿ“š Reference


๐Ÿ“œ Chapter


interface & type

Index Signature


TypeScript์—์„œ string key๋กœ ๊ฐ์ฒด์— ์ ‘๊ทผํ•˜๊ธฐ


์˜ˆ์‹œ


type IndexSignature = {
    [index: string]: string;
  };

  const sections: IndexSignature = {
    all: "์ „์ฒด",
    economy: "๊ฒฝ์ œ",
    society: "์‚ฌํšŒ",
    politics: "์ •์น˜",
    science: "IT/๊ณผํ•™",
    global: "์„ธ๊ณ„",
    culture: "์ƒํ™œ๋ฌธํ™”",
    sport: "์Šคํฌ์ธ ",
  };