( relationshipId: MaybeGetter<IdOrNull>, remoteRowId: MaybeGetter<IdOrNull>, listener: LocalRowIdsListener, relationshipsOrRelationshipsId?: MaybeGetter<Relationships | Id | undefined>, )
| 1361 | ); |
| 1362 | |
| 1363 | export const onLocalRowIds = ( |
| 1364 | relationshipId: MaybeGetter<IdOrNull>, |
| 1365 | remoteRowId: MaybeGetter<IdOrNull>, |
| 1366 | listener: LocalRowIdsListener, |
| 1367 | relationshipsOrRelationshipsId?: MaybeGetter<Relationships | Id | undefined>, |
| 1368 | ): void => |
| 1369 | addListenerEffect( |
| 1370 | resolveRelationships(relationshipsOrRelationshipsId), |
| 1371 | LOCAL + ROW_IDS, |
| 1372 | listener, |
| 1373 | () => [maybeGet(relationshipId), maybeGet(remoteRowId)], |
| 1374 | ); |
| 1375 | |
| 1376 | export const onLinkedRowIds = ( |
| 1377 | relationshipId: MaybeGetter<Id>, |
no test coverage detected
searching dependent graphs…