Skip to content

Releases: danvk/typings-checker

bugfix

22 Jan 18:53
Compare
Choose a tag to compare
  • Allow full-line assertions with leading whitespace

Inline assertions

21 Jan 21:15
Compare
Choose a tag to compare

These are helpful for testing the types of parameters in callbacks, e.g.

mapObject({a: 1, b: 2}, (
  val,  // $ExpectType number
  key,  // $ExpectType "a" | "b"
  c,  // $ExpectType { a: number; b: number; }
) => '' + val);

Bugfix and cleanup

20 Jan 21:51
Compare
Choose a tag to compare
  • Fix incorrect line numbers in errors
  • Remove tslint from dependencies
  • Refactor

Initial Release

20 Jan 21:49
Compare
Choose a tag to compare
  • Proof of concept