quick-lint-js
quick-lint-js copied to clipboard
8$: Lint use-before-decl for TypeScript import aliases
The following should report an error:
namespace ns { export class B {} }
new A(); // use before decl
import A = ns.B;