( store: Store | undefined, create: (store: Store) => Queries, createDeps?: DependencyList, )
| 1790 | ); |
| 1791 | |
| 1792 | export const useCreateQueries: typeof useCreateQueriesDecl = ( |
| 1793 | store: Store | undefined, |
| 1794 | create: (store: Store) => Queries, |
| 1795 | createDeps?: DependencyList, |
| 1796 | ): Queries | undefined => useCreate(store, create, createDeps); |
| 1797 | |
| 1798 | export const useQueriesIds: typeof useQueriesIdsDecl = () => |
| 1799 | useThingIds(OFFSET_QUERIES); |