LoginSignup
1
2

More than 5 years have passed since last update.

TypeScript で literal type を union している型をオブジェクトのキーに使用する

Posted at

忘れがちなのでメモ

やりたいこと

type ALPHABET = "a" | "b" | "c" | "d";

がある時に

{
  a: 1,
  b: 2,
  c: 3,
  d: 4
}

という ALPHABET をキーとして持つオブジェクトの型付をしたい。

やりかた

const obj: { [A in ALPHABET]: number; } = {
  a: 1,
  b: 2,
  c: 3,
  d: 4
};
1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2