nextCollectorValues - Action for setting the next collector values

https://redux-toolkit.js.org/api/createAction

This is for internal "collector" setup for handling the state of the current node

  • Calling this redux#ActionCreator with an argument will return a PayloadAction of type T with a payload of P

    Parameters

    • payload: { fields: DaVinciField[]; formData: { value: Record<string, unknown> } }

    Returns {
        payload: {
            fields: DaVinciField[];
            formData: { value: Record<string, unknown> };
        };
        type: string;
    }

Properties

Properties

match: (
    action: unknown,
) => action is {
    payload: {
        fields: DaVinciField[];
        formData: { value: Record<string, unknown> };
    };
    type: string;
}
type: string