@colisweb/rescript-toolkit 5.9.10 → 5.9.11

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colisweb/rescript-toolkit",
3
- "version": "5.9.10",
3
+ "version": "5.9.11",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "clean": "rescript clean",
@@ -227,6 +227,12 @@ module Map = {
227
227
  external addMarker: (t, Marker.t) => unit = "addObject"
228
228
  @send
229
229
  external getBoundingBox: (t, unit) => Geo.Rect.t = "getBoundingBox"
230
+ @send
231
+ external removeAll: (t, unit) => unit = "removeAll"
232
+ @send
233
+ external removeObject: (t, object) => unit = "removeObject"
234
+ @send
235
+ external removeObjects: (t, array<object>) => unit = "removeObjects"
230
236
 
231
237
  external toObject: t => object = "%identity"
232
238
  }