@@ -3,28 +3,24 @@ extracting docs for src/DocExtractionRes.res
3
3
4
4
{
5
5
"name": "DocExtractionRes",
6
- "deprecated": false,
7
6
"docstrings": ["Module level documentation goes here."],
8
7
"items": [
9
8
{
10
9
"id": "DocExtractionRes.t",
11
10
"kind": "type",
12
11
"name": "t",
13
- "deprecated": false,
14
12
"signature": "type t = {name: string, online: bool}",
15
13
"docstrings": ["This type represents stuff."],
16
14
"detail":
17
15
{
18
16
"kind": "record",
19
17
"fieldDocs": [{
20
18
"fieldName": "name",
21
- "deprecated": false,
22
19
"optional": false,
23
20
"docstrings": ["The name of the stuff."],
24
21
"signature": "string"
25
22
}, {
26
23
"fieldName": "online",
27
- "deprecated": false,
28
24
"optional": false,
29
25
"docstrings": ["Whether stuff is online."],
30
26
"signature": "bool"
@@ -35,15 +31,13 @@ extracting docs for src/DocExtractionRes.res
35
31
"id": "DocExtractionRes.make",
36
32
"kind": "value",
37
33
"name": "make",
38
- "deprecated": false,
39
34
"signature": "let make: string => t",
40
35
"docstrings": ["Create stuff.\n\n```rescript example\nlet stuff = make(\"My name\")\n```"]
41
36
},
42
37
{
43
38
"id": "DocExtractionRes.asOffline",
44
39
"kind": "value",
45
40
"name": "asOffline",
46
- "deprecated": false,
47
41
"signature": "let asOffline: t => t",
48
42
"docstrings": ["Stuff goes offline."]
49
43
},
@@ -53,14 +47,12 @@ extracting docs for src/DocExtractionRes.res
53
47
"item":
54
48
{
55
49
"name": "SomeInnerModule",
56
- "deprecated": false,
57
50
"docstrings": ["Another module level docstring here."],
58
51
"items": [
59
52
{
60
53
"id": "DocExtractionRes.SomeInnerModule.status",
61
54
"kind": "type",
62
55
"name": "status",
63
- "deprecated": false,
64
56
"signature": "type status = Started(t) | Stopped | Idle",
65
57
"docstrings": [],
66
58
"detail":
@@ -69,19 +61,16 @@ extracting docs for src/DocExtractionRes.res
69
61
"constructorDocs": [
70
62
{
71
63
"constructorName": "Started",
72
- "deprecated": false,
73
64
"docstrings": ["If this is started or not"],
74
65
"signature": "Started(t)"
75
66
},
76
67
{
77
68
"constructorName": "Stopped",
78
- "deprecated": false,
79
69
"docstrings": ["Stopped?"],
80
70
"signature": "Stopped"
81
71
},
82
72
{
83
73
"constructorName": "Idle",
84
- "deprecated": false,
85
74
"docstrings": ["Now idle."],
86
75
"signature": "Idle"
87
76
}]
@@ -91,15 +80,13 @@ extracting docs for src/DocExtractionRes.res
91
80
"id": "DocExtractionRes.SomeInnerModule.validInputs",
92
81
"kind": "type",
93
82
"name": "validInputs",
94
- "deprecated": false,
95
83
"signature": "type validInputs = [\\n | #\\\"needs-escaping\\\"\\n | #something\\n | #status(status)\\n | #withPayload(int)\\n]",
96
84
"docstrings": ["These are all the valid inputs."]
97
85
},
98
86
{
99
87
"id": "DocExtractionRes.SomeInnerModule.callback",
100
88
"kind": "type",
101
89
"name": "callback",
102
- "deprecated": false,
103
90
"signature": "type callback = (t, ~status: status) => unit",
104
91
"docstrings": []
105
92
}]
@@ -111,7 +98,6 @@ extracting docs for src/DocExtractionRes.res
111
98
"item":
112
99
{
113
100
"name": "AnotherModule",
114
- "deprecated": false,
115
101
"docstrings": ["Mighty fine module here too!"],
116
102
"items": [
117
103
{
@@ -124,23 +110,20 @@ extracting docs for src/DocExtractionRes.res
124
110
"id": "DocExtractionRes.AnotherModule.callback",
125
111
"kind": "type",
126
112
"name": "callback",
127
- "deprecated": false,
128
113
"signature": "type callback = SomeInnerModule.status => unit",
129
114
"docstrings": ["Testing what this looks like."]
130
115
},
131
116
{
132
117
"id": "DocExtractionRes.AnotherModule.isGoodStatus",
133
118
"kind": "value",
134
119
"name": "isGoodStatus",
135
- "deprecated": false,
136
120
"signature": "let isGoodStatus: SomeInnerModule.status => bool",
137
121
"docstrings": []
138
122
},
139
123
{
140
124
"id": "DocExtractionRes.AnotherModule.someVariantWithInlineRecords",
141
125
"kind": "type",
142
126
"name": "someVariantWithInlineRecords",
143
- "deprecated": false,
144
127
"signature": "type someVariantWithInlineRecords = SomeStuff({offline: bool})",
145
128
"docstrings": ["Trying how it looks with an inline record in a variant."],
146
129
"detail":
@@ -149,7 +132,6 @@ extracting docs for src/DocExtractionRes.res
149
132
"constructorDocs": [
150
133
{
151
134
"constructorName": "SomeStuff",
152
- "deprecated": false,
153
135
"docstrings": ["This has inline records..."],
154
136
"signature": "SomeStuff"
155
137
}]
@@ -159,7 +141,6 @@ extracting docs for src/DocExtractionRes.res
159
141
"id": "DocExtractionRes.AnotherModule.domRoot",
160
142
"kind": "type",
161
143
"name": "domRoot",
162
- "deprecated": false,
163
144
"signature": "type domRoot = unit => ReactDOM.Client.Root.t",
164
145
"docstrings": ["Callback to get the DOM root..."]
165
146
}]
@@ -171,22 +152,19 @@ extracting docs for src/DocExtractionRes.res
171
152
"item":
172
153
{
173
154
"name": "ModuleWithThingsThatShouldNotBeExported",
174
- "deprecated": false,
175
155
"docstrings": [],
176
156
"items": [
177
157
{
178
158
"id": "DocExtractionRes.ModuleWithThingsThatShouldNotBeExported.t",
179
159
"kind": "type",
180
160
"name": "t",
181
- "deprecated": false,
182
161
"signature": "type t",
183
162
"docstrings": ["The type t is stuff."]
184
163
},
185
164
{
186
165
"id": "DocExtractionRes.ModuleWithThingsThatShouldNotBeExported.make",
187
166
"kind": "value",
188
167
"name": "make",
189
- "deprecated": false,
190
168
"signature": "let make: unit => t",
191
169
"docstrings": ["The maker of stuff!"]
192
170
}]
0 commit comments