import {Tags} from '../util'; import {Settable} from './settable'; export type Histogram<T> = Settable<T>; export abstract class HistogramFactory<T> { abstract histogram(name: string, tags: Tags): Histogram<T>; }