I would like to find a way to dynamically define a type from an array of possibilities.
I have a map as shown below where the keys are the types's name, and the corresponding values are arrays of what that type can be.
export const typeOptions = {
areaOfStudy: ["politics", "mathematics", "biology"],
ageRange: ["1821", "2225", "26plus"],
societyCategory: [
"Debate Society",
"Basketball Society",
"Football Society",
"3D Modelling Society",
],
}
I would like to find a way to infer from the object above the following:
export type AreaOfStudy = "politics" | "mathematics" | "biology";
export type AgeRange = "1821" | "2225" | "26plus";
export type SocietyCategory =
| "Debate Society"
| "Basketball Society"
| "Football Society"
| "3D Modelling Society"
Any ideas or tips on how I could do that?
You can use
typeof
combined withas const
typeof
gives you the type of a value.as const
says that it should use the exact values.