Combining `Option<number>` and `Option<string>` types

how to combine two Option types , suppose
const t: Option<number> | Option<string> 

is what a Option.match returns either onSome or onNone
how to change t to become:
t: Option<number|string>
Was this page helpful?