summaryrefslogtreecommitdiff
path: root/src/nlp/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/nlp/index.ts')
-rw-r--r--src/nlp/index.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/nlp/index.ts b/src/nlp/index.ts
new file mode 100644
index 0000000..ebed586
--- /dev/null
+++ b/src/nlp/index.ts
@@ -0,0 +1,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 };