UNPKG

tx2uml

Version:

Ethereum transaction visualizer that generates UML sequence diagrams.

6 lines (5 loc) 342 B
/// <reference types="node" /> 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[];