diff --git a/src/internal/types.ts b/src/internal/types.ts index bf5f5ea01c..4baa0169d6 100644 --- a/src/internal/types.ts +++ b/src/internal/types.ts @@ -31,6 +31,12 @@ export interface OperatorFunction extends UnaryFunction, Obs export type FactoryOrValue = T | (() => T); +/** + * A function type interface that describes a function that accepts and returns a parameter of the same type. + * + * Used to describe {@link OperatorFunction} with the only one type: `OperatorFunction`. + * + */ export interface MonoTypeOperatorFunction extends OperatorFunction {} /**