Nicolò Ribaudo 8fb50429ea
Throw a better error when transforming imported bindings in types (#13739)
* Throw a better error when transforming imported bindings in types

* Also type casts

* Update error message
2021-09-16 23:14:41 +02:00

6 lines
71 B
JavaScript

import A from "x";
export function fn(x: A) {
return A.method(x);
}