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.
11 lines
657 B
11 lines
657 B
import Histogram from "./Histogram";
|
|
export declare function decompress(data: Uint8Array): Uint8Array;
|
|
export declare const decodeFromCompressedBase64: (base64String: string, bitBucketSize?: 8 | 16 | 32 | 64 | "packed", useWebAssembly?: boolean, minBarForHighestTrackableValue?: number) => Histogram;
|
|
declare function encodeWasmIntoCompressedBase64(compressionLevel?: number): string;
|
|
declare module "./wasm" {
|
|
interface WasmHistogram {
|
|
encodeIntoCompressedBase64: typeof encodeWasmIntoCompressedBase64;
|
|
}
|
|
}
|
|
export declare const encodeIntoCompressedBase64: (histogram: Histogram, compressionLevel?: number | undefined) => string;
|
|
export {};
|