/** * The MIT License (MIT) * Copyright (c) 2016 Zhipeng Jia * https://github.com/zhipeng-jia/snappyjs */ /** * Decompress snappy data. * Accepts an output buffer to avoid allocating a new buffer for each call. * * @param {Uint8Array} input compressed data * @param {Uint8Array} output output buffer */ export declare function snappyUncompress(input: Uint8Array, output: Uint8Array): void; //# sourceMappingURL=snappy.d.ts.map