When a user imports a type alias like
// ./a.ts
export type Foo = number | string | symbol;
We should try to print out Foo in error messages like in
// ./b.ts
import { Foo } from "./a.js"
let x: Foo = true;
and in declaration emit like in
// ./c.ts
import { Foo } from "./a.js"
function f(x: Foo) {
return x;
}
When a user imports a type alias like
We should try to print out
Fooin error messages like inand in declaration emit like in