Int16Histogram.d.ts 269 B

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