(exportAs: string | undefined)
| 478 | } |
| 479 | |
| 480 | function extractExportAs(exportAs: string | undefined): string[] | null { |
| 481 | return exportAs === undefined ? null : splitByComma(exportAs); |
| 482 | } |
| 483 | |
| 484 | function isContentQuery(value: any): value is Query { |
| 485 | const name = value.ngMetadataName; |
no test coverage detected
searching dependent graphs…