type DefaultedParam = Either<TypeParam, ConstParam>;Aliased Type§
enum DefaultedParam {
Left(TypeParam),
Right(ConstParam),
}type DefaultedParam = Either<TypeParam, ConstParam>;enum DefaultedParam {
Left(TypeParam),
Right(ConstParam),
}