( store: Store | undefined, create: (store: Store) => Metrics, )
| 1225 | ); |
| 1226 | |
| 1227 | export const useCreateMetrics = ( |
| 1228 | store: Store | undefined, |
| 1229 | create: (store: Store) => Metrics, |
| 1230 | ): Accessor<Metrics | undefined> => useCreate(store, create); |
| 1231 | |
| 1232 | export const useMetricsIds = () => useThingIds(OFFSET_METRICS); |
| 1233 |
no test coverage detected
searching dependent graphs…