Interface ActionCreatorsMapObject<A>

Object whose values are action creator functions.

interface ActionCreatorsMapObject<A> {
    [key: string]: ActionCreator<A>;
}

Type Parameters

  • A = any

Indexable

[key: string]: ActionCreator<A>