@colisweb/rescript-toolkit 4.29.2 → 4.29.3
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/vendors/Browser.resi +1 -0
package/package.json
CHANGED
package/src/vendors/Browser.resi
CHANGED
|
@@ -134,6 +134,7 @@ module FormData: {
|
|
|
134
134
|
@new external create: unit => t = "FormData"
|
|
135
135
|
|
|
136
136
|
@send external append: (t, string, 'a) => unit = "append"
|
|
137
|
+
@send external appendWithFileName: (t, string, 'a, string) => unit = "append"
|
|
137
138
|
@send external get: (t, string) => Js.Nullable.t<'a> = "get"
|
|
138
139
|
@send external getAll: (t, string) => Js.Nullable.t<array<'a>> = "getAll"
|
|
139
140
|
@send external has: (t, string) => bool = "has"
|