@ts-graphviz/adapter
Version:
Graphviz Runtime adapters for Cross Platform
13 lines (12 loc) • 386 B
TypeScript
/**
* @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;