( tableId: MaybeGetter<IdOrNull>, listener: RowCountListener, mutator?: boolean, storeOrStoreId?: MaybeGetter<Store | Id | undefined>, )
| 1085 | ); |
| 1086 | |
| 1087 | export const onRowCount = ( |
| 1088 | tableId: MaybeGetter<IdOrNull>, |
| 1089 | listener: RowCountListener, |
| 1090 | mutator?: boolean, |
| 1091 | storeOrStoreId?: MaybeGetter<Store | Id | undefined>, |
| 1092 | ): void => |
| 1093 | addListenerEffect( |
| 1094 | resolveStore(storeOrStoreId), |
| 1095 | ROW_COUNT, |
| 1096 | listener, |
| 1097 | () => [maybeGet(tableId)], |
| 1098 | mutator, |
| 1099 | ); |
| 1100 | |
| 1101 | export const onRowIds = ( |
| 1102 | tableId: MaybeGetter<IdOrNull>, |
no test coverage detected
searching dependent graphs…