[READ-ONLY] Mirror of https://github.com/Schniz/infer-types. Returns the exported inferred types from TypeScript.
0

Configure Feed

Select the types of activity you want to include in your feed.

TypeScript 97.8%
JavaScript 1.9%
Other 0.3%
8 1 1

Clone this repository

https://tangled.org/schlez.in/infer-types https://tangled.org/did:plc:24rbuyvevu4ossluqbti4sah
git@tangled.org:schlez.in/infer-types git@tangled.org:did:plc:24rbuyvevu4ossluqbti4sah

For self-hosted knots, clone URLs may differ based on your setup.



README.md

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