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
|
@@ -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
|
|
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
|
*/
|