Skip to content

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 ParameterDescription
TThe type of the source AsyncObservable's values

See

Transforming Data

Released under the MIT License.