Skip to content

Instantly share code, notes, and snippets.

@tonkotsuboy
Last active June 17, 2020 10:12
Show Gist options
  • Select an option

  • Save tonkotsuboy/eab8e04e7791fe2a7617b66d555b358c to your computer and use it in GitHub Desktop.

Select an option

Save tonkotsuboy/eab8e04e7791fe2a7617b66d555b358c to your computer and use it in GitHub Desktop.
オブジェクトの値からなるunion type
const MyFood = {
Food1: "ラーメン",
Food2: "カツ丼",
Food3: "ビャンビャン麺",
} as const;
type FoodNameType = typeof MyFood[keyof typeof MyFood];
// 結果: "ラーメン" | "カツ丼" | "ビャンビャン麺"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment