Interface ActionErrorInternal

interface ActionError {
    error: {
        description: string;
        items?: ActionErrorItem[];
        type: "actionError";
    };
}

Properties

Properties

error: { description: string; items?: ActionErrorItem[]; type: "actionError" }