Interface DynMapReducerCtor<K, T>

Defines the shape of a dynamic map constructor function.

interface DynMapReducerCtor<K, T> {
    new DynMapReducerCtor(
        data?: Map<K, T> | DynMapData<K, T>,
    ): DynMapReducer<K, T>;
}

Type Parameters

  • K
  • T

Constructors

Constructors