| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
TypesMatch defines the Match type shared by translation memory and machine translation engines: TypesMem, TypesRestMem, HybridTM, and MTEngines all use it, so a result from any of them is interchangeable with any other.
npm install typesmatchimport type { Match } from "typesmatch";
interface Match {
id: string;
source: XMLElement;
target: XMLElement;
origin: string;
type: string;
similarity: number;
properties: Record<string, string>;
}This package has no logic of its own — it exists only so every engine that produces a Match agrees on its shape without depending on any one engine's implementation package.
Eclipse Public License 1.0 — see LICENSE.
| Back | FazBrowse Home | New Git URL |