Hi,
I am finding myself repeating the same pattern over and over:
```
import Effect.Ref (Ref)
import Effect.Ref (new, read, write, modify_) as Ref
```
I want the `Ref` type to be imported unqualified, but the functions qualified because the function names are quite
general.
I was wondering if purescript has something like:
```
import Effect.Ref (Ref) As Ref (new, read, write, modify_)
```
which allows me to import unqualified & qualified identifiers in 1 go.
I just want to know if the accepted way of doing this is with the 2 import statements or if
a shorthand already exists?
Regards
--Rouan