Alternative Method to Extract Case Type from `Data.TaggedEnum`

Given a Data.TaggedEnum, is there a way to get the type of a specific case other than using Extract<MyEnum, { _tag: "MyCaseTag" }>?
Was this page helpful?