MCPcopy Create free account
hub / github.com/angular/angular / isViewQuery

Function isViewQuery

packages/core/src/render3/jit/directive.ts:490–493  ·  view source on GitHub ↗
(value: any)

Source from the content-addressed store, hash-verified

488}
489
490function isViewQuery(value: any): value is Query {
491 const name = value.ngMetadataName;
492 return name === 'ViewChild' || name === 'ViewChildren';
493}
494
495function isInputAnnotation(value: any): value is Input {
496 return value.ngMetadataName === 'Input';

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected