( store: Store | undefined, create: (store: Store) => Indexes, )
| 1273 | ]); |
| 1274 | |
| 1275 | export const useCreateIndexes = ( |
| 1276 | store: Store | undefined, |
| 1277 | create: (store: Store) => Indexes, |
| 1278 | ): Accessor<Indexes | undefined> => useCreate(store, create); |
| 1279 | |
| 1280 | export const useIndexesIds = () => useThingIds(OFFSET_INDEXES); |
| 1281 |
no test coverage detected
searching dependent graphs…