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