Skip to content
This repository was archived by the owner on Oct 7, 2025. It is now read-only.

Releases: danvk/typings-checker

bugfix

22 Jan 18:53

Choose a tag to compare

  • Allow full-line assertions with leading whitespace

Inline assertions

21 Jan 21:15

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

Choose a tag to compare

  • Fix incorrect line numbers in errors
  • Remove tslint from dependencies
  • Refactor

Initial Release

20 Jan 21:49

Choose a tag to compare

  • Proof of concept