infer-types
v0.0.2
Published
Returns the exported inferred types from TypeScript
Downloads
138
Readme
infer-types
Returns the exported inferred types from TypeScript.
This is a tool to test that the types you expect TypeScript to infer are correct - this is meant to be used in snapshot or plain tests.
Install
npm install --save-dev infer-types
How does it work?
It works by compiling the input file with TypeScript and look for every @export <name>
declaration:
/** @export some-name */
const a = "hello";
The function returns an object, made from all the <name>
s as keys, and types - as strings, as the object values, so in the previous example, the object would look like:
{
"a": "string"
}
Usage
Let's say you have the following file:
// ./test-file.ts
function apply<T, R>(arg: T, fn: (arg: T) => R) {
return fn(arg);
}
// apply is a generic function, and we'd like to know that a user that will use
// it, will get type safety and code completion, so no `any` will pop out.
//
// Let's make some test cases:
apply(10, /** @export number => number */ x => x + 1);
apply(10, /** @export number => string */ x => String(x));
apply("hello", /** @export string => number */ x => x.length);
type User = { name: string };
const user: User = { name: "Gal" };
apply(user, /** @export User => number */ x => x.name);
And in our testing framework of choice:
import { getTypes } from "infer-types";
test("infers correctly", () => {
expect(getTypes("./test-file.ts")).toEqual({
"number => number": "(x: number) => number",
"number => string": "(x: number) => string",
"string => number": "(x: string) => number",
"User => string": "(x: User) => string"
});
});