| 36 | import { notifyAllParentsIfNeeded } from './utils'; |
| 37 | |
| 38 | export interface RxListManager<T> { |
| 39 | nextStrategy: (config: RxStrategyNames | Observable<RxStrategyNames>) => void; |
| 40 | |
| 41 | render(changes$: Observable<NgIterable<T>>): Observable<NgIterable<T> | null>; |
| 42 | } |
| 43 | |
| 44 | export function createListTemplateManager< |
| 45 | T, |
no outgoing calls
no test coverage detected