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