EntryEdits etc
This commit is contained in:
parent
87a42389c2
commit
cdba254140
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lingdocs/pashto-inflector",
|
"name": "@lingdocs/pashto-inflector",
|
||||||
"version": "0.3.3",
|
"version": "0.3.4",
|
||||||
"author": "lingdocs.com",
|
"author": "lingdocs.com",
|
||||||
"description": "A Pashto inflection and verb conjugation engine, inculding React components for displaying Pashto text, inflections, and conjugations",
|
"description": "A Pashto inflection and verb conjugation engine, inculding React components for displaying Pashto text, inflections, and conjugations",
|
||||||
"homepage": "https://verbs.lingdocs.com",
|
"homepage": "https://verbs.lingdocs.com",
|
||||||
|
|
10
src/types.ts
10
src/types.ts
|
@ -417,4 +417,12 @@ export type DisplayFormSubgroup = {
|
||||||
content: DisplayFormItem[],
|
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[];
|
Loading…
Reference in New Issue