interface AddContextActionCreatorPayload {
    contextKey: string;
    contextValue: ContextValue;
}

Properties

contextKey: string

The name of the key to store the context value in.

contextValue: ContextValue

The context value.