Interface DerivedMapCreate<K, T>
interface DerivedMapCreate<K, T> {
ctor?: typeof DynMapReducerDerived;
filters?: Iterable<DynReducer.Data.FilterFn<T> | Filter<T>>;
name?: string;
sort?: CompareFn<T> | DynReducer.Data.Sort<T>;
[key: string]: any;
}
ctor?: typeof DynMapReducerDerived;
filters?: Iterable<DynReducer.Data.FilterFn<T> | Filter<T>>;
name?: string;
sort?: CompareFn<T> | DynReducer.Data.Sort<T>;
[key: string]: any;
}
Type Parameters
- Kany- Key type.
- Tany- Type of data.
                 
                    
                  Hierarchy
              
              - DynReducer.Options.Common<T>- DerivedMapCreate (View Summary)
 
Indexable
- [key: string]: anyExtra data to pass through to initialize.
Defines object / options for creating a derived map reducer.