( metricsOrMetricsId?: MetricsOrMetricsId, )
| 1557 | ): void => useProvideThing(metricsId, metrics, OFFSET_METRICS); |
| 1558 | |
| 1559 | export const useMetricIds: typeof useMetricIdsDecl = ( |
| 1560 | metricsOrMetricsId?: MetricsOrMetricsId, |
| 1561 | ): Ids => |
| 1562 | useListenable( |
| 1563 | METRIC + IDS, |
| 1564 | useMetricsOrMetricsById(metricsOrMetricsId), |
| 1565 | ReturnType.Array, |
| 1566 | ); |
| 1567 | |
| 1568 | export const useMetric: typeof useMetricDecl = ( |
| 1569 | metricId: Id, |
searching dependent graphs…