This commit is contained in:
lingdocs 2022-04-26 12:44:25 +05:00
parent b6ebdd66ca
commit b19dd13c6e
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@lingdocs/pashto-inflector",
"version": "2.3.0",
"version": "2.3.1",
"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",

View File

@ -712,6 +712,6 @@ export type EntryFeederSingleType<X extends VerbEntry | DictionaryEntry> = X[] |
export type EntryLookupPortal<X extends VerbEntry | DictionaryEntry> = {
search: (s: string) => X[],
getByTs: (s: number) => X,
getByTs: (ts: number) => (X | undefined),
}