oops forgot to export
This commit is contained in:
parent
b19dd13c6e
commit
3f9b1161d5
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lingdocs/pashto-inflector",
|
||||
"version": "2.3.1",
|
||||
"version": "2.3.2",
|
||||
"author": "lingdocs.com",
|
||||
"description": "A Pashto inflection and verb conjugation engine, inculding React components for displaying Pashto text, inflections, and conjugations",
|
||||
"homepage": "https://verbs.lingdocs.com",
|
||||
|
|
|
@ -113,6 +113,7 @@ import {
|
|||
countSyllables,
|
||||
} from "./lib/accent-helpers";
|
||||
import NPPicker from "./components/np-picker/NPPicker";
|
||||
import EPExplorer from "./components/ep-explorer/EPExplorer";
|
||||
import shuffleArray from "./lib/shuffle-array";
|
||||
import defaultTextOptions from "./lib/default-text-options";
|
||||
import * as grammarUnits from "./lib/grammar-units";
|
||||
|
@ -178,6 +179,7 @@ export {
|
|||
readDictionaryInfo,
|
||||
writeDictionaryInfo,
|
||||
// COMPONENTS
|
||||
EPExplorer,
|
||||
VPExplorer,
|
||||
ConjugationViewer, // TODO: Deprecated - remove
|
||||
Examples,
|
||||
|
|
|
@ -496,13 +496,6 @@ export type NonInflecting<T> = T & { __brand3: "non-inflecting" };
|
|||
|
||||
export type Entry = NounEntry | AdjectiveEntry | AdverbEntry | VerbEntry;
|
||||
|
||||
export type Words = {
|
||||
nouns: NounEntry[],
|
||||
adjectives: AdjectiveEntry[],
|
||||
verbs: VerbEntry[],
|
||||
adverbs: AdverbEntry[],
|
||||
}
|
||||
|
||||
// TODO: make this Rendered<VPSelectionComplete> with recursive Rendered<>
|
||||
export type VPRendered = {
|
||||
type: "VPRendered",
|
||||
|
|
Loading…
Reference in New Issue