@attivio/suit
Version:
Attivio SUIT, the Search UI Toolkit, is a library for creating search clients for searching the Attivio platform.
15 lines (10 loc) • 387 B
JavaScript
;
exports.__esModule = true;
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
var GraphEdge = function GraphEdge(from, to) {
_classCallCheck(this, GraphEdge);
this.from = from;
this.to = to;
};
exports.default = GraphEdge;
module.exports = exports["default"];