I have in one file:
module FieldDef where
type Field = { someProp :: String }
In another file I have:
module FieldUse where
import FieldDef (Field)
someValue :: Field
someValue = { someProp: "aoeu" }
Ctrl + clik on Field in someValue :: Field shows class definition in Data.Field (relative path .spago/prelude/v6.0.0/src/Data/Field.purs) instead of type alias in FieldDef.
I have in one file:
In another file I have:
Ctrl + clik on
FieldinsomeValue :: Fieldshows class definition inData.Field(relative path.spago/prelude/v6.0.0/src/Data/Field.purs) instead of type alias inFieldDef.