You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Validation schema contains undefined | any definition for field which makes all thing pointless: it can not be checked statically and all modern IDE-s can't suggest options possible:
/**
* List of validation rules for each defined field
*/
[key in keyof T]: ValidationRule | undefined | any; // <-- !!! "undefined | any" must be removed to make d.ts really useful on practice
The text was updated successfully, but these errors were encountered:
Validation schema contains
undefined | any
definition for field which makes all thing pointless: it can not be checked statically and all modern IDE-s can't suggest options possible:The text was updated successfully, but these errors were encountered: