UNPKG

@ts-graphviz/adapter

Version:

Graphviz Runtime adapters for Cross Platform

12 lines (11 loc) 247 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 };