UNPKG

@taiga-ui/cdk

Version:

Base library for creating Angular components and applications using Taiga UI principles regarding of actual visual appearance

7 lines (6 loc) 268 B
import type { QueryList } from '@angular/core'; import type { Observable } from 'rxjs'; /** * Converts changes observable of a QueryList to an Observable of arrays */ export declare function tuiQueryListChanges<T>(queryList: QueryList<T>): Observable<readonly T[]>;