( storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, )
| 476 | }; |
| 477 | |
| 478 | export const useHasTables = ( |
| 479 | storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, |
| 480 | ): Accessor<boolean> => |
| 481 | useListenable( |
| 482 | TABLES, |
| 483 | useStoreOrStoreById(storeOrStoreId), |
| 484 | ReturnType.Boolean, |
| 485 | [], |
| 486 | ); |
| 487 | |
| 488 | export const useTables = ( |
| 489 | storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, |
searching dependent graphs…