@kyve/core-beta
Version:
🚀 The base KYVE node implementation.
14 lines (13 loc) • 477 B
TypeScript
/// <reference types="node" />
import { Node } from "../..";
import { DataItem } from "../../types";
/**
* saveBundleDecompress decompresses a bundle with the specified compression.
* It never throws an error and returns no data if one occurs.
*
* @method saveBundleDecompress
* @param {Node} this
* @param {Buffer} rawStorageData
* @return {Promise<DataItem[]>}
*/
export declare function saveBundleDecompress(this: Node, rawStorageData: Buffer): Promise<DataItem[]>;