(node, decorators, modifiers, isTypeOnly, name, moduleReference)
| 25317 | } |
| 25318 | // @api |
| 25319 | function updateImportEqualsDeclaration(node, decorators, modifiers, isTypeOnly, name, moduleReference) { |
| 25320 | return node.decorators !== decorators |
| 25321 | || node.modifiers !== modifiers |
| 25322 | || node.isTypeOnly !== isTypeOnly |
| 25323 | || node.name !== name |
| 25324 | || node.moduleReference !== moduleReference |
| 25325 | ? update(createImportEqualsDeclaration(decorators, modifiers, isTypeOnly, name, moduleReference), node) |
| 25326 | : node; |
| 25327 | } |
| 25328 | // @api |
| 25329 | function createImportDeclaration(decorators, modifiers, importClause, moduleSpecifier, assertClause) { |
| 25330 | var node = createBaseDeclaration(266 /* SyntaxKind.ImportDeclaration */, decorators, modifiers); |
no test coverage detected