( store: Store | undefined, create: (store: Store) => Queries, )
| 1455 | ); |
| 1456 | |
| 1457 | export const useCreateQueries = ( |
| 1458 | store: Store | undefined, |
| 1459 | create: (store: Store) => Queries, |
| 1460 | ): Accessor<Queries | undefined> => useCreate(store, create); |
| 1461 | |
| 1462 | export const useQueriesIds = () => useThingIds(OFFSET_QUERIES); |
| 1463 |
no test coverage detected
searching dependent graphs…