You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
704 B
18 lines
704 B
import { JsHistogram } from "./JsHistogram";
|
|
import { BitBucketSize } from "./Histogram";
|
|
export declare const deflate: any;
|
|
export declare const inflate: any;
|
|
export declare function decompress(data: Uint8Array): Uint8Array;
|
|
export declare function doDecode(data: Uint8Array, bitBucketSize?: BitBucketSize, minBarForHighestTrackableValue?: number): JsHistogram;
|
|
declare function doEncodeIntoCompressedBase64(compressionLevel?: number): string;
|
|
declare module "./JsHistogram" {
|
|
namespace JsHistogram {
|
|
let decode: typeof doDecode;
|
|
}
|
|
}
|
|
declare module "./JsHistogram" {
|
|
interface JsHistogram {
|
|
encodeIntoCompressedBase64: typeof doEncodeIntoCompressedBase64;
|
|
}
|
|
}
|
|
export {};
|