6 lines
267 B
TypeScript
6 lines
267 B
TypeScript
|
import TypedArrayHistogram from "./TypedArrayHistogram";
|
||
|
declare class Int8Histogram extends TypedArrayHistogram {
|
||
|
constructor(lowestDiscernibleValue: number, highestTrackableValue: number, numberOfSignificantValueDigits: number);
|
||
|
}
|
||
|
export default Int8Histogram;
|