UNPKG

@ts-graphviz/adapter

Version:

Graphviz Runtime adapters for Cross Platform

13 lines (12 loc) 381 B
/** * @module @ts-graphviz/adapter */ export type Options = any; /** * Execute the Graphviz dot command and make a Stream of the results. */ export declare function toStream(dot: string, options?: Options): never; /** * Execute the Graphviz dot command and output the results to a file. */ export declare function toFile(dot: string, path: string, options?: Options): never;