buehler/node-typescript-parser

Add more information regarding whether an import statement is a class or interface

Opened this issue · 0 comments

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.