UNPKG

@dtu-olp-2024/kafka-nocobase

Version:

A NocoBase plugin for Apache Kafka integration, supporting message publishing, topic management, and event-driven workflows. Built for the DTU GreenHope project.

17 lines 571 B
/** * The [[link-rlp]] (RLP) encoding is used throughout Ethereum * to serialize nested structures of Arrays and data. * * @_subsection api/utils:Recursive-Length Prefix [about-rlp] */ export { decodeRlp } from "./rlp-decode.js"; export { encodeRlp } from "./rlp-encode.js"; /** * An RLP-encoded structure. */ export type RlpStructuredData = string | Array<RlpStructuredData>; /** * An RLP-encoded structure, which allows Uint8Array. */ export type RlpStructuredDataish = string | Uint8Array | Array<RlpStructuredDataish>; //# sourceMappingURL=rlp.d.ts.map