* Throw a better error when transforming imported bindings in types * Also type casts * Update error message
6 lines
76 B
TypeScript
6 lines
76 B
TypeScript
import A from "x";
|
|
|
|
export function fn(x: A.b[2]) {
|
|
return A.method(x);
|
|
}
|