Interface DynDerivedReducerCtor<T>
interface DynDerivedReducerCtor<T> {
new DynDerivedReducerCtor(
hostData: DynDataHost<any>,
parentIndex: DynIndexerAPI<any, T>,
options: DynDataOptions<T>,
): DynDerivedReducer<any, any, T>;
}
new DynDerivedReducerCtor(
hostData: DynDataHost<any>,
parentIndex: DynIndexerAPI<any, T>,
options: DynDataOptions<T>,
): DynDerivedReducer<any, any, T>;
}
Type Parameters
Index
Constructors
Constructors
constructor
- new DynDerivedReducerCtor(
hostData: DynDataHost<any>,
parentIndex: DynIndexerAPI<any, T>,
options: DynDataOptions<T>,
): DynDerivedReducer<any, any, T> Parameters
- hostData: DynDataHost<any>
- parentIndex: DynIndexerAPI<any, T>
- options: DynDataOptions<T>
Returns DynDerivedReducer<any, any, T>
Defines the shape of a derived reducer constructor function.