Make validators type guards
gustavohenke opened this issue · 0 comments
gustavohenke commented
As the title says, so that things like this are possible:
Fielded.text(); // Field<string | undefined>
Fielded.text().addValidators((val: string | undefined): val is string => ...) // Field<string>
This change means forcing a breaking change to how validators are working currently, as they only really return the error strings.