Interface AnyAction

An Action type which accepts any other properties. This is mainly for the use of the Reducer type. This is not part of Action itself to prevent types that extend Action from having an index signature.

interface AnyAction {
    type: any;
    [extraProps: string]: any;
}

Hierarchy (view full)

Indexable

[extraProps: string]: any

Properties

Properties

type: any

Generated using TypeDoc