Float64Histogram.d.ts 273 B

12345
  1. import TypedArrayHistogram from "./TypedArrayHistogram";
  2. declare class Float64Histogram extends TypedArrayHistogram {
  3. constructor(lowestDiscernibleValue: number, highestTrackableValue: number, numberOfSignificantValueDigits: number);
  4. }
  5. export default Float64Histogram;