( tableId: MaybeGetter<Id>, storeOrStoreId?: MaybeGetter<Store | Id | undefined>, )
| 361 | ); |
| 362 | |
| 363 | export const getTableCellIds = ( |
| 364 | tableId: MaybeGetter<Id>, |
| 365 | storeOrStoreId?: MaybeGetter<Store | Id | undefined>, |
| 366 | ): {readonly current: Ids} => |
| 367 | createListenable( |
| 368 | resolveStore(storeOrStoreId), |
| 369 | TABLE + CELL_IDS, |
| 370 | EMPTY_ARR, |
| 371 | () => [maybeGet(tableId)], |
| 372 | ); |
| 373 | |
| 374 | export const hasTableCell = ( |
| 375 | tableId: MaybeGetter<Id>, |
nothing calls this directly
no test coverage detected
searching dependent graphs…