-
Notifications
You must be signed in to change notification settings - Fork 0
/
documentation.json
80 lines (80 loc) · 2.13 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[
{
"name": "Sondage",
"comment": "\nSondage is a small module that helps building quesionnaires (Sondage in french).\n\nIt brings Types, functions and the whole view for displaying the questionnaire.\n\n\n## What does it do?\nLorem ipsum dolor sit amet\n\n\n## How to integrate it in the Elm-Architecture\nLorem ipsum dolor sit amet\n\n\n## Types\n@docs Catalogue, Msg, Question\n\n\n## Functions\n@docs initCatalogue, update, view, isCatalogueCompleted, resolveCatalogueAsJson\n",
"aliases": [],
"types": [
{
"name": "Catalogue",
"comment": " ",
"args": [],
"cases": []
},
{
"name": "Msg",
"comment": " ",
"args": [],
"cases": []
},
{
"name": "Question",
"comment": " ",
"args": [],
"cases": [
[
"Options",
[
"{ question : String , options : List String , answer : Maybe.Maybe String }"
]
],
[
"FreeText",
[
"{ question : String, answer : Maybe.Maybe String }"
]
],
[
"Scale",
[
"{ question : String , range : ( Int, Int ) , answer : Maybe.Maybe String }"
]
],
[
"TextBlock",
[
"{ heading : String, text : String }"
]
]
]
}
],
"values": [
{
"name": "initCatalogue",
"comment": " ",
"type": "List Sondage.Question -> Sondage.Catalogue"
},
{
"name": "isCatalogueCompleted",
"comment": " ",
"type": "Sondage.Catalogue -> Bool"
},
{
"name": "resolveCatalogueAsJson",
"comment": " ",
"type": "Sondage.Catalogue -> Json.Encode.Value"
},
{
"name": "update",
"comment": " ",
"type": "Sondage.Msg -> Sondage.Catalogue"
},
{
"name": "view",
"comment": " ",
"type": "Sondage.Catalogue -> Html.Html Sondage.Msg"
}
],
"generated-with-elm-version": "0.18.0"
}
]