I have an enum like this
enum A {
Car = "car",
Bike = "bike",
Truck = "truck"
}
and I want to get a type that is car | bike | truck
I know that keof typeof A can give me Car | Bike | Truck but I need the values here as opposed to keys.