feat(core): make static query flag optional (#32986)

This is a re-submit of #32686.

Switches back to having the static flag be optional on ViewChild and ContentChild queries, in preparation for changing its default value.

PR Close #32986
This commit is contained in:
crisbeto
2019-10-03 21:54:07 +02:00
committed by atscott
parent 7806596fba
commit 900d0055e0
3 changed files with 15 additions and 15 deletions

View File

@ -29,7 +29,7 @@ export interface Query {
read: any;
isViewQuery: boolean;
selector: any;
static: boolean;
static?: boolean;
}
export const createContentChildren = makeMetadataFactory<Query>(