observables - ZeMA-gGmbH/NoPE-JS GitHub Wiki

Namespace: observables

Author

Martin Karkowski

Email

[email protected] This module contains a default implementation for a INopeObservable.

Please checkout the INopeObservable for an example.

Classes

Interfaces

Type Aliases

IObservableType

IObservableType<T, AD>: Partial<AD> & { value: T }

The IObservable data contains additional value. This is the data, which will be utilized by the underlying RXJS implementation.

Export

Type parameters

Name Type Description
T T The datatype of the INopeObservable
AD extends IEventAdditionalData = IEventAdditionalData The additional data of which is utilized by the RXJS Implementation.

IPartialObserver

IPartialObserver<T>: NextObserver<T> | ErrorObserver<T> | CompletionObserver<T>

Type parameters

Name
T

IPipe

IPipe<T, K>: (scope: { [index: string]: any; }, observable: Observable<T>) => Observable<K>

Type parameters

Name
T
K

Type declaration

(scope, observable): Observable<K>

Helper to interact with the underlying RXJS implementation.

Parameters
Name Type
scope Object
observable Observable<T>
Returns

Observable<K>

⚠️ **GitHub.com Fallback** ⚠️