(id: string, options: {
readonly description?: string | undefined
readonly attributes?: Metric.Attributes | undefined
readonly boundaries: ReadonlyArray<number>
})
| 1820 | readonly #boundaries: ReadonlyArray<number> |
| 1821 | |
| 1822 | constructor(id: string, options: { |
| 1823 | readonly description?: string | undefined |
| 1824 | readonly attributes?: Metric.Attributes | undefined |
| 1825 | readonly boundaries: ReadonlyArray<number> |
| 1826 | }) { |
| 1827 | super(id, options?.description, attributesToRecord(options?.attributes)) |
| 1828 | this.#boundaries = options.boundaries |
| 1829 | } |
| 1830 | |
| 1831 | createHooks(): Metric.Hooks<number, HistogramState> { |
| 1832 | const bounds = this.#boundaries |
nothing calls this directly
no test coverage detected