ExternalImport represents an external npm package import
| 36 | |
| 37 | // ExternalImport represents an external npm package import |
| 38 | type ExternalImport struct { |
| 39 | path string |
| 40 | isTypeOnly bool |
| 41 | } |
| 42 | |
| 43 | func (e ExternalImport) Path() string { |
| 44 | return e.path |
nothing calls this directly
no outgoing calls
no test coverage detected