elm-in-elm / compiler / Elm.Data.VarName

Variable name, eg. the x in

foo =
    x + 1


type alias VarName =
String

Just a String alias, instead of a type wrapper. We generally use records with explanatory field names where two Strings would be next to each other, to protect against swapping them accidentally.