Interface DynArrayReducerCtor<T>

Defines the shape of a dynamic array constructor function.

interface DynArrayReducerCtor<T> {
    new DynArrayReducerCtor(
        data?: Iterable<T, any, any> | DynArrayData<T>,
    ): DynArrayReducer<T>;
}

Type Parameters

  • T

Constructors

Constructors