Skip to content

0.9.5

Compare
Choose a tag to compare
@gcanti gcanti released this 22 Jan 09:09
· 509 commits to master since this release
  • 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> {
      }