revert: refactor(ivy): Update query-related comments (#29342)

This commit is contained in:
Matias Niemelä
2019-03-18 13:39:10 -07:00
parent fe759ee0cf
commit b759d63389
4 changed files with 6 additions and 22 deletions
+1 -1
View File
@@ -721,7 +721,7 @@ export declare class QueryList<T> {
map<U>(fn: (item: T, index: number, array: T[]) => U): U[];
notifyOnChanges(): void;
reduce<U>(fn: (prevValue: U, curValue: T, curIndex: number, array: T[]) => U, init: U): U;
reset(resultsTree: Array<T | any[]>): void;
reset(res: Array<T | any[]>): void;
setDirty(): void;
some(fn: (value: T, index: number, array: T[]) => boolean): boolean;
toArray(): T[];