@ts-graphviz/adapter
Version:
Graphviz Runtime adapters for Cross Platform
12 lines (11 loc) • 350 B
JavaScript
;
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
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);
}
exports.toFile = toFile;
exports.toStream = toStream;