wn-ts-node
Version:
Wordnet interface library - TypeScript port
26 lines • 1.74 kB
TypeScript
/**
* Wordnet Interface - TypeScript Port
*
* A modern TypeScript implementation of the wn library for accessing WordNet data.
*/
export { Wordnet } from './wordnet.js';
export { config, ConfigManager } from './config.js';
export { KyselyWordnet, type NodeWordnetConfig } from './kysely-wordnet.js';
export * from './database/index.js';
export { NodeWordNetKernel } from './wordnet-kernel.js';
export { NodeWordNetCore } from './wordnet-core.js';
export { downloadFile, DownloadError } from 'wn-ts-core';
export type { DownloadOptions } from 'wn-ts-core';
export { download, add, addLexicalResource, remove, exportData as export, } from './data-management/index.js';
export { projects, lexicons, word, words, sense, senses, synset, synsets, ili, ilis, } from './module-functions.js';
export { getProjects, getProject, getProjectVersions, getProjectVersionUrls, getProjectVersionError, loadProjectIndex, clearProjectIndexCache, } from 'wn-ts-core';
export type { ProjectIndex, ProjectVersion } from 'wn-ts-core';
export type { Word, Sense, Synset, Lexicon, Project, ILI, Form, Pronunciation, Tag, Count, Example, Definition, Relation, PartOfSpeech, WordnetConfig, WordnetOptions, AddOptions, ExportOptions, } from 'wn-ts-core';
export { WnError, DatabaseError, ConfigurationError, ProjectError, WnWarning, } from 'wn-ts-core';
export { parseLMFXML, createMinimalLMF, } from 'wn-ts-core';
export { loadLMF, isLMF, } from './lmf.js';
export type { LMFDocument, LMFLoadOptions } from 'wn-ts-core';
export { TranslationHelper, createTranslationHelper, quickTranslate, } from 'wn-ts-core';
export type { TranslationResult, BilingualQueryOptions, } from 'wn-ts-core';
export declare const __version__ = "0.1.1";
//# sourceMappingURL=index.d.ts.map