( storeOrStoreId?: MaybeGetter<Store | Id | undefined>, )
| 317 | }; |
| 318 | |
| 319 | export const hasTables = ( |
| 320 | storeOrStoreId?: MaybeGetter<Store | Id | undefined>, |
| 321 | ): {readonly current: boolean} => |
| 322 | createListenable( |
| 323 | resolveStore(storeOrStoreId), |
| 324 | TABLES, |
| 325 | false, |
| 326 | () => EMPTY_ARR, |
| 327 | 1, |
| 328 | ); |
| 329 | |
| 330 | export const getTables = ( |
| 331 | storeOrStoreId?: MaybeGetter<Store | Id | undefined>, |
nothing calls this directly
no test coverage detected
searching dependent graphs…