import { Observable } from 'rxjs'; import { IChangeSet } from '../IChangeSet'; import { ArrayOrIterable } from '../../util/ArrayOrIterable'; /** * Apply a logical Or operator between the collections i.e items which are in any of the sources are included * @typeparam TObject The type of the object. * @typeparam TKey The type of the key. * @param items The items */ export declare function or(items: ArrayOrIterable>>): Observable>;