UNPKG

taipa

Version:

Taiwanese morphological parsing library

6 lines (5 loc) 284 B
import { Document } from '../document'; import { Node } from '../document'; export declare const getTokens: (text: string) => string[]; export declare const getDepRelations: (nodes: Node[]) => import("./relation").Relation[]; export declare function depParse(text: string): Document;