@fpw/en-wiktionary-la-modules 0.2.2 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +75 -75
- package/README.md +19 -15
- package/dist/LaEngine.d.ts +23 -23
- package/dist/LaEngine.js +64 -66
- package/dist/index.d.ts +12 -11
- package/dist/index.js +12 -28
- package/dist/modules/common.d.ts +67 -66
- package/dist/modules/common.js +145 -157
- package/dist/modules/conjugation/LaVerb.d.ts +118 -109
- package/dist/modules/conjugation/LaVerb.js +2861 -2295
- package/dist/modules/conjugation/VerbAffix.d.ts +18 -18
- package/dist/modules/conjugation/VerbAffix.js +19 -23
- package/dist/modules/conjugation/VerbForm.d.ts +204 -182
- package/dist/modules/conjugation/VerbForm.js +215 -199
- package/dist/modules/conjugation/VerbType.d.ts +54 -40
- package/dist/modules/conjugation/VerbType.js +66 -58
- package/dist/modules/declination/LaAdjData.d.ts +16 -16
- package/dist/modules/declination/LaAdjData.js +1474 -908
- package/dist/modules/declination/LaNominal.d.ts +136 -130
- package/dist/modules/declination/LaNominal.js +1884 -1804
- package/dist/modules/declination/LaNounData.d.ts +16 -2
- package/dist/modules/declination/LaNounData.js +935 -855
- package/dist/modules/declination/LaPersonalPronoun.d.ts +12 -12
- package/dist/modules/declination/LaPersonalPronoun.js +80 -85
- package/dist/modules/declination/NominalForm.d.ts +85 -69
- package/dist/modules/declination/NominalForm.js +101 -91
- package/dist/modules/declination/NominalType.d.ts +191 -120
- package/dist/modules/declination/NominalType.js +211 -146
- package/dist/modules/headword/HeadWord.d.ts +107 -107
- package/dist/modules/headword/HeadWord.js +28 -32
- package/dist/modules/headword/HeadwordParser.d.ts +29 -29
- package/dist/modules/headword/HeadwordParser.js +456 -452
- package/package.json +23 -15
- package/dist/LaEngine.js.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/modules/common.js.map +0 -1
- package/dist/modules/conjugation/LaVerb.js.map +0 -1
- package/dist/modules/conjugation/VerbAffix.js.map +0 -1
- package/dist/modules/conjugation/VerbForm.js.map +0 -1
- package/dist/modules/conjugation/VerbType.js.map +0 -1
- package/dist/modules/declination/LaAdjData.js.map +0 -1
- package/dist/modules/declination/LaNominal.js.map +0 -1
- package/dist/modules/declination/LaNounData.js.map +0 -1
- package/dist/modules/declination/LaPersonalPronoun.js.map +0 -1
- package/dist/modules/declination/NominalForm.js.map +0 -1
- package/dist/modules/declination/NominalType.js.map +0 -1
- package/dist/modules/headword/HeadWord.js.map +0 -1
- package/dist/modules/headword/HeadwordParser.js.map +0 -1
- package/src/LaEngine.ts +0 -86
- package/src/index.ts +0 -16
- package/src/modules/common.ts +0 -164
- package/src/modules/conjugation/LaVerb.ts +0 -2669
- package/src/modules/conjugation/VerbAffix.ts +0 -18
- package/src/modules/conjugation/VerbForm.ts +0 -223
- package/src/modules/conjugation/VerbType.ts +0 -55
- package/src/modules/declination/LaAdjData.ts +0 -1036
- package/src/modules/declination/LaNominal.ts +0 -2025
- package/src/modules/declination/LaNounData.ts +0 -897
- package/src/modules/declination/LaPersonalPronoun.ts +0 -92
- package/src/modules/declination/NominalForm.ts +0 -89
- package/src/modules/declination/NominalType.ts +0 -157
- package/src/modules/headword/HeadWord.ts +0 -132
- package/src/modules/headword/HeadwordParser.ts +0 -515
|
@@ -1,120 +1,191 @@
|
|
|
1
|
-
export declare enum NominalType {
|
|
2
|
-
Singular = "sg",
|
|
3
|
-
NoSingular = "-sg",
|
|
4
|
-
Plural = "pl",
|
|
5
|
-
NoPlural = "-pl",
|
|
6
|
-
Both = "both",
|
|
7
|
-
NotBoth = "not_both",
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
1
|
+
export declare enum NominalType {
|
|
2
|
+
Singular = "sg",
|
|
3
|
+
NoSingular = "-sg",
|
|
4
|
+
Plural = "pl",
|
|
5
|
+
NoPlural = "-pl",
|
|
6
|
+
Both = "both",
|
|
7
|
+
NotBoth = "not_both",
|
|
8
|
+
NoNotBoth = "-not_both",
|
|
9
|
+
Masculine = "M",
|
|
10
|
+
masculine = "m",
|
|
11
|
+
Feminine = "F",
|
|
12
|
+
feminine = "f",
|
|
13
|
+
Neuter = "N",
|
|
14
|
+
neuter = "n",
|
|
15
|
+
NoMasculine = "-M",
|
|
16
|
+
NotMasculine = "not_M",
|
|
17
|
+
NoNotMasculine = "-not_M",
|
|
18
|
+
NotMe = "not_Me",
|
|
19
|
+
NoNotMe = "-not_Me",
|
|
20
|
+
NotFeminine = "not_F",
|
|
21
|
+
NoNotFeminine = "-not_F",
|
|
22
|
+
NoFeminine = "-F",
|
|
23
|
+
NoNeuter = "-N",
|
|
24
|
+
NotNeuter = "not_N",
|
|
25
|
+
NoNotNeuter = "-not_N",
|
|
26
|
+
NotNoNeuter = "not_-N",
|
|
27
|
+
NoNotNoNeuter = "-not_-N",
|
|
28
|
+
GenPluM = "genplum",
|
|
29
|
+
NotGenPluM = "not_genplum",
|
|
30
|
+
NoNotGenPluM = "-not_genplum",
|
|
31
|
+
AccIm = "acc_im",
|
|
32
|
+
NoAccIm = "-acc_im",
|
|
33
|
+
NotAccIm = "not_acc_im",
|
|
34
|
+
AccImEm = "acc_im_em",
|
|
35
|
+
NoAccImEm = "-acc_im_em",
|
|
36
|
+
NotAccImEm = "not_acc_im_em",
|
|
37
|
+
AccEmIm = "acc_em_im",
|
|
38
|
+
NoAccEmIm = "-acc_em_im",
|
|
39
|
+
NotAccEmIm = "not_acc_em_im",
|
|
40
|
+
AccEmEn = "acc_em_en",
|
|
41
|
+
NoAccEmEn = "-acc_em_en",
|
|
42
|
+
NotAccEmEn = "not_acc_em_en",
|
|
43
|
+
AccImIn = "acc_im_in",
|
|
44
|
+
NoAccImIn = "-acc_im_in",
|
|
45
|
+
AccImInEm = "acc_im_in_em",
|
|
46
|
+
NoAccImInEm = "-acc_im_in_em",
|
|
47
|
+
NotAccImInEm = "not_acc_im_in_em",
|
|
48
|
+
NotAccImIn = "not_acc_im_in",
|
|
49
|
+
AccImOccEm = "acc_im_occ_em",
|
|
50
|
+
NoAccImOccEm = "-acc_im_occ_em",
|
|
51
|
+
NotAccImOccEm = "not_acc_im_occ_em",
|
|
52
|
+
AblEI = "abl_e_i",
|
|
53
|
+
NoAblEI = "-abl_e_i",
|
|
54
|
+
NotAblEI = "not_abl_e_i",
|
|
55
|
+
AblI = "abl_i",
|
|
56
|
+
NoAblI = "-abl_i",
|
|
57
|
+
NotAblI = "not_abl_i",
|
|
58
|
+
AblIE = "abl_i_e",
|
|
59
|
+
NoAblIE = "-abl_i_e",
|
|
60
|
+
NotAblIE = "not_abl_i_e",
|
|
61
|
+
AblIOccE = "abl_i_occ_e",
|
|
62
|
+
NoAblIOccE = "-abl_i_occ_e",
|
|
63
|
+
NotAblIOccE = "not_abl_i_occ_e",
|
|
64
|
+
AblEOccI = "abl_e_occ_i",
|
|
65
|
+
NoAblEOccI = "-abl_e_occ_i",
|
|
66
|
+
NotAblEOccI = "not_abl_e_occ_i",
|
|
67
|
+
NoNotAccIm = "-not_acc_im",
|
|
68
|
+
NoNotAccImEm = "-not_acc_im_em",
|
|
69
|
+
NoNotAccEmIm = "-not_acc_em_im",
|
|
70
|
+
NoNotAccImInEm = "-not_acc_im_in_em",
|
|
71
|
+
NoNotAccImIn = "-not_acc_im_in",
|
|
72
|
+
NoNotAccImOccEm = "-not_acc_im_occ_em",
|
|
73
|
+
NoNotAblEI = "-not_abl_e_i",
|
|
74
|
+
NoNotAblI = "-not_abl_i",
|
|
75
|
+
NoNotAblIE = "-not_abl_i_e",
|
|
76
|
+
NoNotAblIOccE = "-not_abl_i_occ_e",
|
|
77
|
+
NoNotAblEOccI = "-not_abl_e_occ_i",
|
|
78
|
+
VocI = "voci",
|
|
79
|
+
NoVocI = "-voci",
|
|
80
|
+
NotVocI = "not_voci",
|
|
81
|
+
NoNotVocI = "-not_voci",
|
|
82
|
+
Abus = "abus",
|
|
83
|
+
NotAbus = "not_abus",
|
|
84
|
+
NoNotAbus = "-not_abus",
|
|
85
|
+
Ubus = "ubus",
|
|
86
|
+
NotUbus = "not_ubus",
|
|
87
|
+
Ium = "ium",
|
|
88
|
+
NoIum = "-ium",
|
|
89
|
+
Ius = "ius",
|
|
90
|
+
NoIus = "-ius",
|
|
91
|
+
NotIus = "not_ius",
|
|
92
|
+
NoNotIus = "-not_ius",
|
|
93
|
+
Us = "us",
|
|
94
|
+
NoUs = "-us",
|
|
95
|
+
NotUs = "not_us",
|
|
96
|
+
NoNotUs = "-not_us",
|
|
97
|
+
Am = "am",
|
|
98
|
+
NoAm = "-am",
|
|
99
|
+
NotAm = "not_am",
|
|
100
|
+
NoNotAm = "-not_am",
|
|
101
|
+
Vos = "vos",
|
|
102
|
+
NoVos = "-vos",
|
|
103
|
+
Vom = "vom",
|
|
104
|
+
NoVom = "-vom",
|
|
105
|
+
Er = "er",
|
|
106
|
+
NoEr = "-er",
|
|
107
|
+
NotNoErr = "not_-er",
|
|
108
|
+
NoNotNoErr = "-not_-er",
|
|
109
|
+
a = "a",
|
|
110
|
+
i = "i",
|
|
111
|
+
I = "I",
|
|
112
|
+
Noi = "-i",
|
|
113
|
+
NoI = "-I",
|
|
114
|
+
NotNoI = "not_-I",
|
|
115
|
+
NoNotNoI = "-not_-I",
|
|
116
|
+
NotI = "not_I",
|
|
117
|
+
NoNotI = "-not_I",
|
|
118
|
+
Pure = "pure",
|
|
119
|
+
NoPure = "-pure",
|
|
120
|
+
NotPure = "not_pure",
|
|
121
|
+
NoNotPure = "-not_pure",
|
|
122
|
+
Par = "par",
|
|
123
|
+
NoPar = "-par",
|
|
124
|
+
NotPar = "not_par",
|
|
125
|
+
NoNotPar = "-not_par",
|
|
126
|
+
Ic = "ic",
|
|
127
|
+
NoIc = "-ic",
|
|
128
|
+
greek = "greek",
|
|
129
|
+
Nogreek = "-greek",
|
|
130
|
+
Notgreek = "not_greek",
|
|
131
|
+
NoNotgreek = "-not_greek",
|
|
132
|
+
Greek = "Greek",
|
|
133
|
+
NoGreek = "-Greek",
|
|
134
|
+
NotGreek = "not_Greek",
|
|
135
|
+
NoNotGreek = "-not_Greek",
|
|
136
|
+
GreekA = "greekA",
|
|
137
|
+
NoGreekA = "-greekA",
|
|
138
|
+
NotGreekA = "not_greekA",
|
|
139
|
+
NoNotGreekA = "-not_greekA",
|
|
140
|
+
GreekE = "greekE",
|
|
141
|
+
NoGreekE = "-greekE",
|
|
142
|
+
NotGreekE = "not_greekE",
|
|
143
|
+
NoNotGreekE = "-not_greekE",
|
|
144
|
+
Echo = "echo",
|
|
145
|
+
argo = "argo",
|
|
146
|
+
Callisto = "Callisto",
|
|
147
|
+
Polis = "polis",
|
|
148
|
+
NotPolis = "not_polis",
|
|
149
|
+
NoNotPolis = "-not_polis",
|
|
150
|
+
NoPolis = "-polis",
|
|
151
|
+
On = "on",
|
|
152
|
+
NoOn = "-on",
|
|
153
|
+
NotOn = "not_on",
|
|
154
|
+
NoNotOn = "-not_on",
|
|
155
|
+
Me = "Me",
|
|
156
|
+
NoMe = "-Me",
|
|
157
|
+
Ma = "Ma",
|
|
158
|
+
NoMa = "-Ma",
|
|
159
|
+
Fa = "Fa",
|
|
160
|
+
NoFa = "-Fa",
|
|
161
|
+
Locative = "loc",
|
|
162
|
+
NoLocative = "-loc",
|
|
163
|
+
Ligature = "lig",
|
|
164
|
+
NoCategories = "nocat",
|
|
165
|
+
SuffixN = "sufn",
|
|
166
|
+
NotSuffixN = "not_sufn",
|
|
167
|
+
NoNotSuffixN = "-not_sufn",
|
|
168
|
+
poetic_esi = "poetic_esi",
|
|
169
|
+
Participle = "ptc",
|
|
170
|
+
NoParticiple = "-ptc",
|
|
171
|
+
Tor = "tor",
|
|
172
|
+
NoTor = "-tor",
|
|
173
|
+
Trix = "trix",
|
|
174
|
+
NoTrix = "-trix",
|
|
175
|
+
TrixF = "trixf",
|
|
176
|
+
NoTrixF = "-trixf",
|
|
177
|
+
Idis = "idis",
|
|
178
|
+
NoIdis = "-idis",
|
|
179
|
+
distr = "distr",
|
|
180
|
+
Nodistr = "-distr",
|
|
181
|
+
s = "s",
|
|
182
|
+
SingularFull = "singular",
|
|
183
|
+
PluralFull = "plural",
|
|
184
|
+
Gr = "Gr",
|
|
185
|
+
gr = "gr",
|
|
186
|
+
navis = "navis",
|
|
187
|
+
Second = "2nd"
|
|
188
|
+
}
|
|
189
|
+
export declare function addNominalType(types: Set<NominalType>, nomType: string): void;
|
|
190
|
+
export declare function hasNominalType(types: Set<NominalType>, nomType: string): boolean;
|
|
191
|
+
export declare function delNominalType(types: Set<NominalType>, nomType: string): void;
|