Releases: gcanti/io-ts
Releases · gcanti/io-ts
1.0.5
Bug Fix
workaround for upstream TypeScript bug 14041 (wrong generated declarations) (@gcanti )
Internal
optimize InterfaceType.encode (@gcanti )
use definite assignment assertion for phantom fields (@gcanti )
1.0.2
Bug Fix
fix OutputOfPartialProps
name (@gcanti )
1.0.1
Bug Fix
fix AnyType
by extending Type<any>
(@gcanti )
0.9.8
New Feature
add decode and deprecate top level validate (@gcanti )
Internal
when checking validations use methods instead of top level functions (@gcanti )
0.9.6
New Feature
recursive
combinator
add support for mutually recursive types, closes #114 (@gcanti )
make it safer: RT
now must extend Type<mixed, A>
(@gcanti )
0.9.5
New Feature
add mixed
type (@gcanti )
replace any
with mixed
in all input type parameters (@gcanti )
- export class StringType extends Type<any, string> {
+ export class StringType extends Type<mixed, string> {
}
You can’t perform that action at this time.