EntryEdits etc

This commit is contained in:
Bill D 2021-03-20 08:35:48 +04:00
parent 87a42389c2
commit cdba254140
2 changed files with 10 additions and 2 deletions

View File

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

@ -417,4 +417,12 @@ export type DisplayFormSubgroup = {
content: DisplayFormItem[],
}
export type AayTail = "ey" | "aay";
export type AayTail = "ey" | "aay";
export type EntryEdit = {
entry: DictionaryEntry,
comment: string,
final?: boolean,
}
export type EditsSubmission = EntryEdit[];