-
Notifications
You must be signed in to change notification settings - Fork 1
/
documentation.json
57 lines (57 loc) · 1.53 KB
/
documentation.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[
{
"name": "Rating",
"comment": " A Rating for Elm\n\n# The exposes\n@docs defaultModel, Msg, update, view, Model\n\n",
"aliases": [
{
"name": "Model",
"comment": " The type of The Rating.\n",
"args": [],
"type": "{ rating : Maybe.Maybe Int , quantity : Int , svgDefault : Svg.Svg Rating.Msg , svgSelected : Svg.Svg Rating.Msg , svgOver : Svg.Svg Rating.Msg , svgParentAtributes : List ( String, String ) , svgParentClass : List ( String, Bool ) , ratingPercent : Float , isOver : Bool , ratingOver : Maybe.Maybe Int , readOnly : Bool }"
}
],
"types": [
{
"name": "Msg",
"comment": " The type representing messages that are passed inside the Rating.\n",
"args": [],
"cases": [
[
"Click",
[
"Int"
]
],
[
"MouseOver",
[
"Int"
]
],
[
"MouseOut",
[]
]
]
}
],
"values": [
{
"name": "defaultModel",
"comment": " ",
"type": "Rating.Model"
},
{
"name": "update",
"comment": " Simple Update for the do work.\n",
"type": "Rating.Msg -> Rating.Model -> ( Rating.Model, Platform.Cmd.Cmd Rating.Msg )"
},
{
"name": "view",
"comment": " Simple View\n",
"type": "Rating.Model -> Html.Html Rating.Msg"
}
],
"generated-with-elm-version": "0.18.0"
}
]