( tableId: Id, storeOrStoreId?: StoreOrStoreId, )
| 675 | ); |
| 676 | |
| 677 | export const useHasTable: typeof useHasTableDecl = ( |
| 678 | tableId: Id, |
| 679 | storeOrStoreId?: StoreOrStoreId, |
| 680 | ): boolean => |
| 681 | useListenable( |
| 682 | TABLE, |
| 683 | useStoreOrStoreById(storeOrStoreId), |
| 684 | ReturnType.Boolean, |
| 685 | [tableId], |
| 686 | ); |
| 687 | |
| 688 | export const useTable: typeof useTableDecl = ( |
| 689 | tableId: Id, |
searching dependent graphs…