@colisweb/rescript-toolkit 2.29.2 → 2.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colisweb/rescript-toolkit",
3
- "version": "2.29.2",
3
+ "version": "2.29.3",
4
4
  "scripts": {
5
5
  "clean": "rescript clean",
6
6
  "build": "rescript build",
@@ -1,8 +1,11 @@
1
1
  let debug: 'a => unit
2
2
  let debug2: ('a, 'b) => unit
3
+ let debugMany: array<string> => unit
3
4
 
4
5
  let warning: 'a => unit
5
6
  let warning2: ('a, 'b) => unit
7
+ let warningMany: array<string> => unit
6
8
 
7
9
  let error: 'a => unit
8
10
  let error2: ('a, 'b) => unit
11
+ let errorMany: array<string> => unit