blob: 0b71b6969dfd5efb93a5e21a750736209f3c4f2d (
plain)
1
2
3
4
5
6
|
import * as Spacy from "./spacy";
import * as Stanza from "./stanza";
import { ocr } from "./ocr";
import type * as Types from "./types";
export * from "./nlp";
export { ISO, ocr, Stanza, Spacy, type Types };
|