0.0.2 • Published 5 years ago

infer-types v0.0.2

Weekly downloads
33
License
ISC
Repository
-
Last release
5 years ago

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"
  });
});