@attivio/suit
Version:
Attivio SUIT, the Search UI Toolkit, is a library for creating search clients for searching the Attivio platform.
10 lines (7 loc) • 311 B
JavaScript
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;
};
export { GraphEdge as default };