(name: string, options?: {
readonly description?: string | undefined
readonly preregisteredWords?: ReadonlyArray<string> | undefined
})
| 103 | |
| 104 | /** @internal */ |
| 105 | export const frequency = (name: string, options?: { |
| 106 | readonly description?: string | undefined |
| 107 | readonly preregisteredWords?: ReadonlyArray<string> | undefined |
| 108 | }): Metric.Metric.Frequency<string> => fromMetricKey(metricKey.frequency(name, options)) |
| 109 | |
| 110 | /** @internal */ |
| 111 | export const withConstantInput = dual< |
nothing calls this directly
no test coverage detected
searching dependent graphs…