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