1 | "use strict";
|
---|
2 | Object.defineProperty(exports, "__esModule", { value: true });
|
---|
3 | exports.JsHistogram = exports.WasmHistogram = exports.Recorder = exports.HistogramLogWriter = exports.encodeIntoCompressedBase64 = exports.decodeFromCompressedBase64 = exports.ByteBuffer = exports.build = exports.listTags = exports.HistogramLogReader = exports.PackedHistogram = exports.Float64Histogram = exports.Int32Histogram = exports.Int16Histogram = exports.Int8Histogram = exports.initWebAssemblySync = exports.initWebAssembly = void 0;
|
---|
4 | /*
|
---|
5 | * This is a TypeScript port of the original Java version, which was written by
|
---|
6 | * Gil Tene as described in
|
---|
7 | * https://github.com/HdrHistogram/HdrHistogram
|
---|
8 | * and released to the public domain, as explained at
|
---|
9 | * http://creativecommons.org/publicdomain/zero/1.0/
|
---|
10 | */
|
---|
11 | const ByteBuffer_1 = require("./ByteBuffer");
|
---|
12 | exports.ByteBuffer = ByteBuffer_1.default;
|
---|
13 | const encoding_1 = require("./encoding");
|
---|
14 | Object.defineProperty(exports, "decodeFromCompressedBase64", { enumerable: true, get: function () { return encoding_1.decodeFromCompressedBase64; } });
|
---|
15 | Object.defineProperty(exports, "encodeIntoCompressedBase64", { enumerable: true, get: function () { return encoding_1.encodeIntoCompressedBase64; } });
|
---|
16 | const Float64Histogram_1 = require("./Float64Histogram");
|
---|
17 | exports.Float64Histogram = Float64Histogram_1.default;
|
---|
18 | const HistogramLogReader_1 = require("./HistogramLogReader");
|
---|
19 | exports.HistogramLogReader = HistogramLogReader_1.default;
|
---|
20 | Object.defineProperty(exports, "listTags", { enumerable: true, get: function () { return HistogramLogReader_1.listTags; } });
|
---|
21 | const HistogramLogWriter_1 = require("./HistogramLogWriter");
|
---|
22 | exports.HistogramLogWriter = HistogramLogWriter_1.default;
|
---|
23 | const Int16Histogram_1 = require("./Int16Histogram");
|
---|
24 | exports.Int16Histogram = Int16Histogram_1.default;
|
---|
25 | const Int32Histogram_1 = require("./Int32Histogram");
|
---|
26 | exports.Int32Histogram = Int32Histogram_1.default;
|
---|
27 | const Int8Histogram_1 = require("./Int8Histogram");
|
---|
28 | exports.Int8Histogram = Int8Histogram_1.default;
|
---|
29 | const JsHistogram_1 = require("./JsHistogram");
|
---|
30 | exports.JsHistogram = JsHistogram_1.default;
|
---|
31 | const PackedHistogram_1 = require("./PackedHistogram");
|
---|
32 | exports.PackedHistogram = PackedHistogram_1.default;
|
---|
33 | const Recorder_1 = require("./Recorder");
|
---|
34 | exports.Recorder = Recorder_1.default;
|
---|
35 | const wasm_1 = require("./wasm");
|
---|
36 | Object.defineProperty(exports, "initWebAssembly", { enumerable: true, get: function () { return wasm_1.initWebAssembly; } });
|
---|
37 | Object.defineProperty(exports, "initWebAssemblySync", { enumerable: true, get: function () { return wasm_1.initWebAssemblySync; } });
|
---|
38 | Object.defineProperty(exports, "WasmHistogram", { enumerable: true, get: function () { return wasm_1.WasmHistogram; } });
|
---|
39 | const HistogramBuilder_1 = require("./HistogramBuilder");
|
---|
40 | Object.defineProperty(exports, "build", { enumerable: true, get: function () { return HistogramBuilder_1.build; } });
|
---|
41 | //# sourceMappingURL=index.js.map |
---|