( store: Store | undefined, create: (store: Store) => Indexes, createDeps?: DependencyList, )
| 1591 | ); |
| 1592 | |
| 1593 | export const useCreateIndexes: typeof useCreateIndexesDecl = ( |
| 1594 | store: Store | undefined, |
| 1595 | create: (store: Store) => Indexes, |
| 1596 | createDeps?: DependencyList, |
| 1597 | ): Indexes | undefined => useCreate(store, create, createDeps); |
| 1598 | |
| 1599 | export const useIndexesIds: typeof useIndexesIdsDecl = () => |
| 1600 | useThingIds(OFFSET_INDEXES); |