@nextrope/xrpl
Version:
A TypeScript/JavaScript API for interacting with the XRP Ledger in Node.js and the browser
11 lines • 305 B
TypeScript
import InnerNode from './InnerNode';
import { NodeType } from './node';
declare class SHAMap {
root: InnerNode;
constructor();
get hash(): string;
addItem(tag: string, data: string, type: NodeType): void;
}
export * from './node';
export default SHAMap;
//# sourceMappingURL=index.d.ts.map