UNPKG

tbx-tools

Version:

A library for processing TermBase eXchange (TBX) files in various ways. It is in the very early stages and may change often (including breaking changes).

11 lines (10 loc) 314 B
export type TBXInformation = { dialect: string; style: string; languages: string[]; terms: Map<string, Array<any>>; } | null; export default class Information { static stringify: (info: TBXInformation) => string; static getBasicInformation: (tbxString: string) => TBXInformation | Error; }