refactor(ivy): rename LQuery to LQueries and associated renames (#21857)

PR Close #21857
This commit is contained in:
Pawel Kozlowski
2018-01-29 14:51:37 +01:00
committed by Jason Aden
parent 285dd6be34
commit 7305e8b45e
7 changed files with 58 additions and 58 deletions

View File

@ -8,7 +8,7 @@
import {ComponentTemplate} from './definition';
import {LElementNode, LViewNode} from './node';
import {LQuery} from './query';
import {LQueries} from './query';
import {LView, TView} from './view';
@ -79,7 +79,7 @@ export interface LContainer {
* Queries active for this container - all the views inserted to / removed from
* this container are reported to queries referenced here.
*/
query: LQuery|null;
queries: LQueries|null;
}
/**