Skip to content

Commit df69c19

Browse files
committed
guess what time it is again - it's public API time!
1 parent dcb4fc1 commit df69c19

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

etc/redux-toolkit.api.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,10 @@ export function unwrapResult<T>(returned: {
293293
}): NonNullable<T>;
294294

295295
// @alpha (undocumented)
296-
export type Update<T> = UpdateStr<T> | UpdateNum<T>;
296+
export type Update<T> = {
297+
id: EntityId;
298+
changes: Partial<T>;
299+
};
297300

298301
// @public
299302
export type ValidateSliceCaseReducers<S, ACR extends SliceCaseReducers<S>> = ACR & {

0 commit comments

Comments
 (0)