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