Closed lpil closed 1 year ago
Hello there!
Starting with Gleam v0.32 the syntax for unqualified importing a type will be import modulename.{type TypeName}.
import modulename.{type TypeName}
The existing import modulename.{Name} will refer to the value constructor, not the type.
import modulename.{Name}
Thanks!
Hello there!
Starting with Gleam v0.32 the syntax for unqualified importing a type will be
import modulename.{type TypeName}
.The existing
import modulename.{Name}
will refer to the value constructor, not the type.Thanks!