Documentation / @eventkit/base / MonoTypeOperatorFunction
Type Alias: MonoTypeOperatorFunction<T>
ts
type MonoTypeOperatorFunction<T> = OperatorFunction<T, T>;
A function type interface that describes a function that accepts and returns a parameter of the same type.
Used to describe OperatorFunction with the only one type: OperatorFunction<T, T>
.
Type Parameters
Type Parameter | Description |
---|---|
T | The type of the source AsyncObservable's values |