summaryrefslogtreecommitdiff
path: root/src/nlp/index.ts
blob: ebed5864aa98442d311355dca8bc9db5ab289406 (plain)
1
2
3
4
5
6
7
import * as Spacy from "./spacy";
import * as Stanza from "./stanza";
import * as ISO from "./iso";
import { ocr } from "./ocr";
import type * as Types from "./types";
export * from "./nlp";
export { ISO, ocr, Stanza, Spacy, type Types };