compromise
Version:
modest natural language processing
47 lines (42 loc) • 1.88 kB
TypeScript
import type { Lexicon, Plugin, matchOptions, Match, Net } from './misc.d.ts'
import type View from './view/two.d.ts'
/** parse a given text */
declare function nlp(text: string, lexicon?: Lexicon): View
// Constructor
declare module nlp {
/** interpret text without tagging */
export function tokenize(text: string, lexicon?: Lexicon): View
/** scan through text with minimal analysis */
export function lazy(text: string, match?: string): View
/** mix in a compromise-plugin */
export function plugin(plugin: Plugin): any
/** mix-in a compromise plugin */
export function extend(plugin: Plugin): any
/** turn a match-string into json */
export function parseMatch(match: string, opts?: matchOptions): object[]
/** grab library internals */
export function world(): object
/** grab library metadata */
export function model(): object
/** grab exposed library methods */
export function methods(): object
/** which compute functions run automatically */
export function hooks(): string[]
/** log our decision-making for debugging */
export function verbose(toLog?: boolean | string): any
/** current semver version of the library */
export const version: string
/** connect new tags to tagset graph */
export function addTags(tags: object): any
/** add new words to internal lexicon */
export function addWords(words: Lexicon, isFrozen?:boolean): any
/** turn a list of words into a searchable graph */
export function buildTrie(words: string[]): object
/** compile a set of match objects to a more optimized form */
export function buildNet(matches: Match[]): Net
/** add words to the autoFill dictionary */
export function typeahead(words: Lexicon): any
/** export internal methods for plugins */
export interface TypedPlugin<Methods extends object> extends Plugin { methods: Methods }
}
export default nlp