UNPKG

@rx-angular/cdk

Version:

@rx-angular/cdk is a Component Development Kit for ergonomic and highly performant angular applications. It helps to to build Large scale applications, UI libs, state management, rendering systems and much more. Furthermore the unique way of mixing reacti

16 lines (15 loc) 541 B
import { NgZone } from '@angular/core'; import { RxCoalescingOptions } from '@rx-angular/cdk/coalescing'; import { Observable } from 'rxjs'; import { RxRenderWork, RxStrategyCredentials } from './model'; /** * @internal * * @param value * @param strategy * @param workFactory * @param options */ export declare function onStrategy<T>(value: T, strategy: RxStrategyCredentials, workFactory: (value: T, work: RxRenderWork, options: RxCoalescingOptions) => void, options?: RxCoalescingOptions & { ngZone?: NgZone; }): Observable<T>;