( source: ts.SourceFile, modulePath: string, classifiedName: string, importPath: string, )
| 521 | * Custom function to insert an export into NgModule. It also imports it. |
| 522 | */ |
| 523 | export function addExportToModule( |
| 524 | source: ts.SourceFile, |
| 525 | modulePath: string, |
| 526 | classifiedName: string, |
| 527 | importPath: string, |
| 528 | ): Change[] { |
| 529 | return addSymbolToNgModuleMetadata(source, modulePath, 'exports', classifiedName, importPath); |
| 530 | } |
| 531 | |
| 532 | /** |
| 533 | * Custom function to insert an export into NgModule. It also imports it. |
no test coverage detected