DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
289 Bytes
var LGraph = require('layout-base').LGraph;
function CoSEGraph(parent, graphMgr, vGraph) {
LGraph.call(this, parent, graphMgr, vGraph);
}
CoSEGraph.prototype = Object.create(LGraph.prototype);
for (var prop in LGraph) {
CoSEGraph[prop] = LGraph[prop];
}
module.exports = CoSEGraph;