17 lines
538 B
JavaScript
17 lines
538 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.ResizeError = void 0;
|
|
/*
|
|
* This is a TypeScript port of the original Java version, which was written by
|
|
* Gil Tene as described in
|
|
* https://github.com/HdrHistogram/HdrHistogram
|
|
* and released to the public domain, as explained at
|
|
* http://creativecommons.org/publicdomain/zero/1.0/
|
|
*/
|
|
class ResizeError {
|
|
constructor(newSize) {
|
|
this.newSize = newSize;
|
|
}
|
|
}
|
|
exports.ResizeError = ResizeError;
|
|
//# sourceMappingURL=ResizeError.js.map
|