Interface DynDerivedReducerCtor<T>

Defines the shape of a derived reducer constructor function.

interface DynDerivedReducerCtor<T> {
    new DynDerivedReducerCtor(
        hostData: DynDataHost<any>,
        parentIndex: DynIndexerAPI<any, T>,
        options: DynDataOptions<T>,
    ): DynDerivedReducer<any, any, T>;
}

Type Parameters

  • T

Constructors

Constructors