Extract the value type from an Option type.
type VoteOption = Option<"yes" | "no">;type VoteValue = SomeType<VoteOption>; // "yes" | "no" Copy
type VoteOption = Option<"yes" | "no">;type VoteValue = SomeType<VoteOption>; // "yes" | "no"
Extract the value type from an Option type.