node-typescript-parser
node-typescript-parser copied to clipboard
Add more information regarding whether an import statement is a class or interface
I want to know whether a particular import statement like so
import { a, b, c } from './blah
A is a class, but b is not a class.
I want to know this because I can then lazy-instantiate imports that are classes in my generated file as needed.