Releases: danvk/typings-checker
Releases · danvk/typings-checker
bugfix
Inline assertions
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
- Fix incorrect line numbers in errors
- Remove tslint from dependencies
- Refactor
Initial Release
- Proof of concept