We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dcb4fc1 commit df69c19Copy full SHA for df69c19
etc/redux-toolkit.api.md
@@ -293,7 +293,10 @@ export function unwrapResult<T>(returned: {
293
}): NonNullable<T>;
294
295
// @alpha (undocumented)
296
-export type Update<T> = UpdateStr<T> | UpdateNum<T>;
+export type Update<T> = {
297
+ id: EntityId;
298
+ changes: Partial<T>;
299
+};
300
301
// @public
302
export type ValidateSliceCaseReducers<S, ACR extends SliceCaseReducers<S>> = ACR & {
0 commit comments