tx2uml
Version:
Ethereum transaction visualizer that generates UML sequence diagrams.
5 lines (4 loc) • 311 B
TypeScript
import { Readable, Writable } from "stream";
import { PlantUmlOptions } from "./types/tx2umlTypes";
export declare const streamPlantUml: (pumlStream: Readable, outputStream: Writable, options: PlantUmlOptions) => Promise<number>;
export declare const genPumlJavaOptions: (options: PlantUmlOptions) => string[];