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

    Parameters

    • Optionalpayload: { cause?: string; propertyPath: string; updater: (formData: any) => any }

    Returns {
        payload: {
            cause?: string;
            propertyPath: string;
            updater: (formData: any) => any;
        };
        type: "formData/updateFormData";
    }

Properties

Properties

match: (
    action: unknown,
) => action is {
    payload: {
        cause?: string;
        propertyPath: string;
        updater: (formData: any) => any;
    };
    type: "formData/updateFormData";
}
type: "formData/updateFormData"