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.
I want to know whether a particular import statement like so
import { a, b, c } from './blahA 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.