xref: /Universal-ctags/Units/parser-elm.r/elm-aliases.d/input.elm (revision 94e964efcdb54004e666334f92f6bee597c7ab96)
1type alias MyAlias1 = String
2
3type alias MyAlias2 =
4    String
5
6type
7    alias
8    MyAlias3
9    =
10    { x:Float, y:Float }
11
12