Int8Histogram.d.ts 267 B

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