(value: any)
| 483 | } |
| 484 | |
| 485 | function isContentQuery(value: any): value is Query { |
| 486 | const name = value.ngMetadataName; |
| 487 | return name === 'ContentChild' || name === 'ContentChildren'; |
| 488 | } |
| 489 | |
| 490 | function isViewQuery(value: any): value is Query { |
| 491 | const name = value.ngMetadataName; |
no outgoing calls
no test coverage detected