source: trip-planner-front/node_modules/hdr-histogram-js/dist/JsHistogram.encoding.d.ts@ e29cc2e

Last change on this file since e29cc2e was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 704 bytes
Line 
1import { JsHistogram } from "./JsHistogram";
2import { BitBucketSize } from "./Histogram";
3export declare const deflate: any;
4export declare const inflate: any;
5export declare function decompress(data: Uint8Array): Uint8Array;
6export declare function doDecode(data: Uint8Array, bitBucketSize?: BitBucketSize, minBarForHighestTrackableValue?: number): JsHistogram;
7declare function doEncodeIntoCompressedBase64(compressionLevel?: number): string;
8declare module "./JsHistogram" {
9 namespace JsHistogram {
10 let decode: typeof doDecode;
11 }
12}
13declare module "./JsHistogram" {
14 interface JsHistogram {
15 encodeIntoCompressedBase64: typeof doEncodeIntoCompressedBase64;
16 }
17}
18export {};
Note: See TracBrowser for help on using the repository browser.