( relationshipId: MaybeGetter<IdOrNull>, localRowId: MaybeGetter<IdOrNull>, listener: RemoteRowIdListener, relationshipsOrRelationshipsId?: MaybeGetter<Relationships | Id | undefined>, )
| 1348 | ); |
| 1349 | |
| 1350 | export const onRemoteRowId = ( |
| 1351 | relationshipId: MaybeGetter<IdOrNull>, |
| 1352 | localRowId: MaybeGetter<IdOrNull>, |
| 1353 | listener: RemoteRowIdListener, |
| 1354 | relationshipsOrRelationshipsId?: MaybeGetter<Relationships | Id | undefined>, |
| 1355 | ): void => |
| 1356 | addListenerEffect( |
| 1357 | resolveRelationships(relationshipsOrRelationshipsId), |
| 1358 | REMOTE_ROW_ID, |
| 1359 | listener, |
| 1360 | () => [maybeGet(relationshipId), maybeGet(localRowId)], |
| 1361 | ); |
| 1362 | |
| 1363 | export const onLocalRowIds = ( |
| 1364 | relationshipId: MaybeGetter<IdOrNull>, |
no test coverage detected
searching dependent graphs…