lucid-extension-sdk 0.0.61 → 0.0.62

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": "lucid-extension-sdk",
3
- "version": "0.0.61",
3
+ "version": "0.0.62",
4
4
  "description": "Utility classes for writing Lucid Software editor extensions",
5
5
  "main": "sdk/index.js",
6
6
  "types": "sdk/index.d.ts",
@@ -36,7 +36,7 @@ export declare function tupleValidator<V extends ((p1: unknown) => p1 is unknown
36
36
  /**
37
37
  * Creates a validator that the given unknown is one of the supplied values
38
38
  */
39
- export declare function someValue<T extends any[]>(...values: T): (x: unknown) => x is T[number];
39
+ export declare function someValue<T extends (string | number | symbol)[]>(...values: T): (x: unknown) => x is T[number];
40
40
  /**
41
41
  * Creates a validator that the given unknown matches at least one of the given validators
42
42
  */