tree.js 372 B

1234567891011
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.Tree = void 0;
  4. const d3_hierarchy_1 = require("d3-hierarchy");
  5. const cluster_1 = require("./cluster");
  6. const Tree = (options) => {
  7. return (0, cluster_1.hierarchyFunction)(d3_hierarchy_1.tree)(options);
  8. };
  9. exports.Tree = Tree;
  10. exports.Tree.props = {};
  11. //# sourceMappingURL=tree.js.map