UNPKG

mtengines

Version:

Machine Translation (MT) library written in TypeScript

18 lines 403 B
export class MTMatch { source; target; origin; constructor(source, target, origin) { this.source = source; this.target = target; this.origin = origin; } toJSON() { return { source: this.source.toString(), target: this.target.toString(), origin: this.origin }; } } //# sourceMappingURL=MTMatch.js.map