( storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, )
| 498 | ]; |
| 499 | |
| 500 | export const useTableIds = ( |
| 501 | storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, |
| 502 | ): Accessor<Ids> => |
| 503 | useListenable( |
| 504 | TABLE_IDS, |
| 505 | useStoreOrStoreById(storeOrStoreId), |
| 506 | ReturnType.Array, |
| 507 | ); |
| 508 | |
| 509 | export const useHasTable = ( |
| 510 | tableId: MaybeAccessor<Id>, |
searching dependent graphs…