(storeOrStoreId: StoreOrStoreId | undefined)
| 131 | }; |
| 132 | |
| 133 | const useHasTableCallback = (storeOrStoreId: StoreOrStoreId | undefined) => { |
| 134 | const store = useStoreOrStoreById(storeOrStoreId); |
| 135 | return (tableId: Id) => store()?.hasTable(tableId) ?? false; |
| 136 | }; |
| 137 | |
| 138 | const useHasRowCallback = ( |
| 139 | storeOrStoreId: StoreOrStoreId | undefined, |
no test coverage detected
searching dependent graphs…