Preference of 1st Overload in Typescript Schemas
Typescript always prefer the 1st overload instead of the 3rd one when using schemas defined as
For example the following code:
errors with:
but passing, for example,
Is it something that could be fixed in lib without having to make
Schema<From> and To is omitted.For example the following code:
errors with:
but passing, for example,
Schema.DateFromString as from argument works.Is it something that could be fixed in lib without having to make
To param in Schema?