Last change
on this file since bdd6491 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
657 bytes
|
Rev | Line | |
---|
[6a3a178] | 1 | import Histogram from "./Histogram";
|
---|
| 2 | export declare function decompress(data: Uint8Array): Uint8Array;
|
---|
| 3 | export declare const decodeFromCompressedBase64: (base64String: string, bitBucketSize?: 8 | 16 | 32 | 64 | "packed", useWebAssembly?: boolean, minBarForHighestTrackableValue?: number) => Histogram;
|
---|
| 4 | declare function encodeWasmIntoCompressedBase64(compressionLevel?: number): string;
|
---|
| 5 | declare module "./wasm" {
|
---|
| 6 | interface WasmHistogram {
|
---|
| 7 | encodeIntoCompressedBase64: typeof encodeWasmIntoCompressedBase64;
|
---|
| 8 | }
|
---|
| 9 | }
|
---|
| 10 | export declare const encodeIntoCompressedBase64: (histogram: Histogram, compressionLevel?: number | undefined) => string;
|
---|
| 11 | export {};
|
---|
Note:
See
TracBrowser
for help on using the repository browser.