ImportSpecifier is a single named import entry inside the braces of an `import { ... }` clause. Name="foo", Alias="" -> foo Name="foo", Alias="bar" -> foo as bar IsTypeOnly=true -> type foo, type foo as bar
| 159 | // Name="foo", Alias="bar" -> foo as bar |
| 160 | // IsTypeOnly=true -> type foo, type foo as bar |
| 161 | type ImportSpecifier struct { |
| 162 | Name string |
| 163 | Alias string |
| 164 | IsTypeOnly bool |
| 165 | } |
| 166 | |
| 167 | func (*ImportSpecifier) isNode() {} |
| 168 |
nothing calls this directly
no outgoing calls
no test coverage detected