( tableId: MaybeAccessor<Id>, storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, )
| 507 | ); |
| 508 | |
| 509 | export const useHasTable = ( |
| 510 | tableId: MaybeAccessor<Id>, |
| 511 | storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, |
| 512 | ): Accessor<boolean> => |
| 513 | useListenable( |
| 514 | TABLE, |
| 515 | useStoreOrStoreById(storeOrStoreId), |
| 516 | ReturnType.Boolean, |
| 517 | [tableId], |
| 518 | ); |
| 519 | |
| 520 | export const useTable = ( |
| 521 | tableId: MaybeAccessor<Id>, |
searching dependent graphs…