@rescript/webapi 0.1.0-experimental-555280c → 0.1.0-experimental-ae90e53
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/FetchAPI/Headers.res +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rescript/webapi",
|
|
3
|
-
"version": "0.1.0-experimental-
|
|
3
|
+
"version": "0.1.0-experimental-ae90e53",
|
|
4
4
|
"description": "Experimental successor to [rescript-webapi](https://github.com/TheSpyder/rescript-webapi)",
|
|
5
5
|
"homepage": "https://rescript-lang.github.io/experimental-rescript-webapi/",
|
|
6
6
|
"bugs": "https://github.com/rescript-lang/experimental-rescript-webapi/issues",
|
package/src/FetchAPI/Headers.res
CHANGED
|
@@ -40,7 +40,7 @@ external delete: (headers, string) => unit = "delete"
|
|
|
40
40
|
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Headers/get)
|
|
41
41
|
*/
|
|
42
42
|
@send
|
|
43
|
-
external get: (headers, string) => string = "get"
|
|
43
|
+
external get: (headers, string) => null<string> = "get"
|
|
44
44
|
|
|
45
45
|
/**
|
|
46
46
|
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Headers/getSetCookie)
|