(exportAs: string | undefined)
| 486 | } |
| 487 | |
| 488 | function extractExportAs(exportAs: string | undefined): string[] | null { |
| 489 | return exportAs === undefined ? null : splitByComma(exportAs); |
| 490 | } |
| 491 | |
| 492 | function isContentQuery(value: any): value is Query { |
| 493 | const name = value.ngMetadataName; |
no test coverage detected