(node)
| 82224 | } |
| 82225 | } |
| 82226 | function isImportedDeclaration(node) { |
| 82227 | return node.kind === 267 /* SyntaxKind.ImportClause */ || node.kind === 270 /* SyntaxKind.ImportSpecifier */ || node.kind === 268 /* SyntaxKind.NamespaceImport */; |
| 82228 | } |
| 82229 | function importClauseFromImported(decl) { |
| 82230 | return decl.kind === 267 /* SyntaxKind.ImportClause */ ? decl : decl.kind === 268 /* SyntaxKind.NamespaceImport */ ? decl.parent : decl.parent.parent; |
| 82231 | } |
no outgoing calls
no test coverage detected