diff options
Diffstat (limited to 'src/zoom/index.ts')
-rw-r--r-- | src/zoom/index.ts | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/zoom/index.ts b/src/zoom/index.ts index 4ce07ca..bcda5a6 100644 --- a/src/zoom/index.ts +++ b/src/zoom/index.ts @@ -4,6 +4,17 @@ import FullText from "./FullText"; import Paragraph from "./Paragraph"; import Sentence from "./Paragraph"; import SpacyClause from "./SpacyClause"; +import Word from "./Word"; +import ServerWord from "./ServerWord"; import type * as Types from "./logic/types"; -export { App, Paragraph, FullText, Sentence, SpacyClause, Types }; +export { + App, + Paragraph, + FullText, + Sentence, + SpacyClause, + Types, + Word, + ServerWord, +}; |