| 1234567891011 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.Tree = void 0;
- const d3_hierarchy_1 = require("d3-hierarchy");
- const cluster_1 = require("./cluster");
- const Tree = (options) => {
- return (0, cluster_1.hierarchyFunction)(d3_hierarchy_1.tree)(options);
- };
- exports.Tree = Tree;
- exports.Tree.props = {};
- //# sourceMappingURL=tree.js.map
|