Interface DerivedListCreate<T>
interface DerivedListCreate<T> {
ctor?: typeof DynArrayReducerDerived;
filters?: Iterable<DynReducer.Data.FilterFn<T> | Filter<T>>;
name?: string;
sort?: CompareFn<T> | DynReducer.Data.Sort<T>;
[key: string]: any;
}
ctor?: typeof DynArrayReducerDerived;
filters?: Iterable<DynReducer.Data.FilterFn<T> | Filter<T>>;
name?: string;
sort?: CompareFn<T> | DynReducer.Data.Sort<T>;
[key: string]: any;
}
Type Parameters
Hierarchy
- Common<T>
- DerivedListCreate (View Summary)
Indexable
- [key: string]: any
Extra data to pass through to
initialize
.
Defines object / options for creating a derived list reducer.