Skip to content

Commit bf819ca

Browse files
committed
Don't update UpdateManyParams
1 parent 6096a0e commit bf819ca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/ra-core/src/types.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -196,8 +196,8 @@ export interface UpdateResult<RecordType extends RaRecord = any> {
196196
data: RecordType;
197197
}
198198

199-
export interface UpdateManyParams<T extends RaRecord = any> {
200-
ids: T['id'][];
199+
export interface UpdateManyParams<T = any> {
200+
ids: Identifier;
201201
data: T;
202202
meta?: any;
203203
}

0 commit comments

Comments
 (0)