Skip to content

aleclarson/spec.ts

Repository files navigation

spec.ts

npm Build Status

Write tests for your types!

import { assert, _ } from "spec.ts";

// Assert two expressions have the same exact type
assert(foo, bar);

// Assert the exact type of an expression
assert(foo, _ as ExpectedType);