@juantroconisf/lib 2.3.1 → 2.3.2
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/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -24,7 +24,7 @@ type ValidatorParams = {
|
|
|
24
24
|
[K in keyof ValidatorTypes]?: ValidatorTypes[K] extends Validator<any, infer U> ? U : never;
|
|
25
25
|
};
|
|
26
26
|
type ValidatorErrorMessage = {
|
|
27
|
-
[K in keyof ValidatorTypes]
|
|
27
|
+
[K in keyof ValidatorTypes]?: string;
|
|
28
28
|
};
|
|
29
29
|
|
|
30
30
|
interface ValidationProps {
|
package/dist/index.d.ts
CHANGED
|
@@ -24,7 +24,7 @@ type ValidatorParams = {
|
|
|
24
24
|
[K in keyof ValidatorTypes]?: ValidatorTypes[K] extends Validator<any, infer U> ? U : never;
|
|
25
25
|
};
|
|
26
26
|
type ValidatorErrorMessage = {
|
|
27
|
-
[K in keyof ValidatorTypes]
|
|
27
|
+
[K in keyof ValidatorTypes]?: string;
|
|
28
28
|
};
|
|
29
29
|
|
|
30
30
|
interface ValidationProps {
|