I have declared a type Value in one of my modules.
It happens that in another module I'm imported, there is also another Value type defined, so I'm given the option to fully-qualify the types, like x.Value vs y.Value.
Is there any way to force a specific interpretation? (so that Value means x.Value for example)?
import other except Value
import themoduleWeWantValueFrom