taipa
Version:
Taiwanese morphological parsing library
15 lines • 368 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Relation = void 0;
class Relation {
dependency;
head;
dependent;
constructor(dep, head, dependent) {
this.dependency = dep;
this.head = head;
this.dependent = dependent;
}
}
exports.Relation = Relation;
//# sourceMappingURL=relation.js.map