UNPKG

@ts-graphviz/adapter

Version:

Graphviz Runtime adapters for Cross Platform

12 lines (11 loc) 242 B
const ERROR_MESSAGE = "This module cannot be run in a browser."; function toStream(dot, options) { throw new Error(ERROR_MESSAGE); } function toFile(dot, path, options) { throw new Error(ERROR_MESSAGE); } export { toFile, toStream };