quick-lint-js icon indicating copy to clipboard operation
quick-lint-js copied to clipboard

8$: Lint use-before-decl for TypeScript import aliases

Open strager opened this issue 3 years ago • 0 comments

The following should report an error:

namespace ns { export class B {} }

new A();  // use before decl
import A = ns.B;

strager avatar Jul 22 '22 03:07 strager