gs-tokenizer 0.1.0
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/README.cn.md +262 -0
- package/README.ja.md +262 -0
- package/README.ko.md +262 -0
- package/README.md +262 -0
- package/lib/core.cjs +1 -0
- package/lib/core.d.ts +230 -0
- package/lib/core.js +1 -0
- package/lib/index.cjs +1 -0
- package/lib/index.d.ts +116 -0
- package/lib/index.js +1 -0
- package/lib/lexicon.cjs +1 -0
- package/lib/lexicon.d.ts +221 -0
- package/lib/lexicon.js +1 -0
- package/package.json +51 -0
package/lib/lexicon.d.ts
ADDED
|
@@ -0,0 +1,221 @@
|
|
|
1
|
+
declare const zh_CN_FirstName: string;
|
|
2
|
+
|
|
3
|
+
declare const zh_CN_LastName: string;
|
|
4
|
+
|
|
5
|
+
declare const zh_CN_FamousName: string;
|
|
6
|
+
|
|
7
|
+
declare const zh_CN_FamousWorks: string;
|
|
8
|
+
|
|
9
|
+
declare const zh_CN_Honorific: string;
|
|
10
|
+
|
|
11
|
+
declare const zh_CN_Nickname: string;
|
|
12
|
+
|
|
13
|
+
declare const zh_CN_Title: string;
|
|
14
|
+
|
|
15
|
+
declare const zh_CN_Kinship: string;
|
|
16
|
+
|
|
17
|
+
declare const zh_CN_Organization: string;
|
|
18
|
+
|
|
19
|
+
declare const zh_CN_Country: string;
|
|
20
|
+
|
|
21
|
+
declare const zh_CN_City: string;
|
|
22
|
+
|
|
23
|
+
declare const zh_CN_Address: string;
|
|
24
|
+
|
|
25
|
+
declare const zh_CN_ComputerTerm: string;
|
|
26
|
+
|
|
27
|
+
declare const zh_CN_NetworkTerms: string;
|
|
28
|
+
|
|
29
|
+
declare const zh_CN_Pronouns: string;
|
|
30
|
+
|
|
31
|
+
declare const zh_CN_Foods: string;
|
|
32
|
+
|
|
33
|
+
declare const zh_CN_Medicines: string;
|
|
34
|
+
|
|
35
|
+
declare const zh_CN_Luxury: string;
|
|
36
|
+
|
|
37
|
+
declare const zh_CN_Transportation: string;
|
|
38
|
+
|
|
39
|
+
declare const zh_CN_Appliances: string;
|
|
40
|
+
|
|
41
|
+
declare const zh_CN_Furniture: string;
|
|
42
|
+
|
|
43
|
+
declare const zh_CN_Pets: string;
|
|
44
|
+
|
|
45
|
+
declare const zh_TW_FirstName: string;
|
|
46
|
+
|
|
47
|
+
declare const zh_TW_LastName: string;
|
|
48
|
+
|
|
49
|
+
declare const zh_TW_FamousName: string;
|
|
50
|
+
|
|
51
|
+
declare const zh_TW_FamousWorks: string;
|
|
52
|
+
|
|
53
|
+
declare const zh_TW_Honorific: string;
|
|
54
|
+
|
|
55
|
+
declare const zh_TW_Nickname: string;
|
|
56
|
+
|
|
57
|
+
declare const zh_TW_Title: string;
|
|
58
|
+
|
|
59
|
+
declare const zh_TW_Kinship: string;
|
|
60
|
+
|
|
61
|
+
declare const zh_TW_Organization: string;
|
|
62
|
+
|
|
63
|
+
declare const zh_TW_Country: string;
|
|
64
|
+
|
|
65
|
+
declare const zh_TW_City: string;
|
|
66
|
+
|
|
67
|
+
declare const zh_TW_Address: string;
|
|
68
|
+
|
|
69
|
+
declare const zh_TW_ComputerTerm: string;
|
|
70
|
+
|
|
71
|
+
declare const zh_TW_NetworkTerms: string;
|
|
72
|
+
|
|
73
|
+
declare const zh_TW_Pronouns: string;
|
|
74
|
+
|
|
75
|
+
declare const zh_TW_Foods: string;
|
|
76
|
+
|
|
77
|
+
declare const zh_TW_Medicines: string;
|
|
78
|
+
|
|
79
|
+
declare const zh_TW_Luxury: string;
|
|
80
|
+
|
|
81
|
+
declare const zh_TW_Transportation: string;
|
|
82
|
+
|
|
83
|
+
declare const zh_TW_Appliances: string;
|
|
84
|
+
|
|
85
|
+
declare const zh_TW_Furniture: string;
|
|
86
|
+
|
|
87
|
+
declare const zh_TW_Pets: string;
|
|
88
|
+
|
|
89
|
+
declare const en_US_FirstName: string;
|
|
90
|
+
|
|
91
|
+
declare const en_US_LastName: string;
|
|
92
|
+
|
|
93
|
+
declare const en_US_FamousName: string;
|
|
94
|
+
|
|
95
|
+
declare const en_US_FamousWorks: string;
|
|
96
|
+
|
|
97
|
+
declare const en_US_Honorific: string;
|
|
98
|
+
|
|
99
|
+
declare const en_US_Nickname: string;
|
|
100
|
+
|
|
101
|
+
declare const en_US_Title: string;
|
|
102
|
+
|
|
103
|
+
declare const en_US_Kinship: string;
|
|
104
|
+
|
|
105
|
+
declare const en_US_Organization: string;
|
|
106
|
+
|
|
107
|
+
declare const en_US_Country: string;
|
|
108
|
+
|
|
109
|
+
declare const en_US_City: string;
|
|
110
|
+
|
|
111
|
+
declare const en_US_Address: string;
|
|
112
|
+
|
|
113
|
+
declare const en_US_ComputerTerm: string;
|
|
114
|
+
|
|
115
|
+
declare const en_US_NetworkTerms: string;
|
|
116
|
+
|
|
117
|
+
declare const en_US_Pronouns: string;
|
|
118
|
+
|
|
119
|
+
declare const en_US_Foods: string;
|
|
120
|
+
|
|
121
|
+
declare const en_US_Medicines: string;
|
|
122
|
+
|
|
123
|
+
declare const en_US_Luxury: string;
|
|
124
|
+
|
|
125
|
+
declare const en_US_Transportation: string;
|
|
126
|
+
|
|
127
|
+
declare const en_US_Appliances: string;
|
|
128
|
+
|
|
129
|
+
declare const en_US_Furniture: string;
|
|
130
|
+
|
|
131
|
+
declare const en_US_Pets: string;
|
|
132
|
+
|
|
133
|
+
declare const ja_JP_FirstName: string;
|
|
134
|
+
|
|
135
|
+
declare const ja_JP_LastName: string;
|
|
136
|
+
|
|
137
|
+
declare const ja_JP_FamousName: string;
|
|
138
|
+
|
|
139
|
+
declare const ja_JP_FamousWorks: string;
|
|
140
|
+
|
|
141
|
+
declare const ja_JP_Honorific: string;
|
|
142
|
+
|
|
143
|
+
declare const ja_JP_Nickname: string;
|
|
144
|
+
|
|
145
|
+
declare const ja_JP_Title: string;
|
|
146
|
+
|
|
147
|
+
declare const ja_JP_Kinship: string;
|
|
148
|
+
|
|
149
|
+
declare const ja_JP_Organization: string;
|
|
150
|
+
|
|
151
|
+
declare const ja_JP_Country: string;
|
|
152
|
+
|
|
153
|
+
declare const ja_JP_City: string;
|
|
154
|
+
|
|
155
|
+
declare const ja_JP_Address: string;
|
|
156
|
+
|
|
157
|
+
declare const ja_JP_ComputerTerm: string;
|
|
158
|
+
|
|
159
|
+
declare const ja_JP_NetworkTerms: string;
|
|
160
|
+
|
|
161
|
+
declare const ja_JP_Pronouns: string;
|
|
162
|
+
|
|
163
|
+
declare const ja_JP_Foods: string;
|
|
164
|
+
|
|
165
|
+
declare const ja_JP_Medicines: string;
|
|
166
|
+
|
|
167
|
+
declare const ja_JP_Luxury: string;
|
|
168
|
+
|
|
169
|
+
declare const ja_JP_Transportation: string;
|
|
170
|
+
|
|
171
|
+
declare const ja_JP_Appliances: string;
|
|
172
|
+
|
|
173
|
+
declare const ja_JP_Furniture: string;
|
|
174
|
+
|
|
175
|
+
declare const ja_JP_Pets: string;
|
|
176
|
+
|
|
177
|
+
declare const ko_KR_FirstName: string;
|
|
178
|
+
|
|
179
|
+
declare const ko_KR_LastName: string;
|
|
180
|
+
|
|
181
|
+
declare const ko_KR_FamousName: string;
|
|
182
|
+
|
|
183
|
+
declare const ko_KR_FamousWorks: string;
|
|
184
|
+
|
|
185
|
+
declare const ko_KR_Honorific: string;
|
|
186
|
+
|
|
187
|
+
declare const ko_KR_Nickname: string;
|
|
188
|
+
|
|
189
|
+
declare const ko_KR_Title: string;
|
|
190
|
+
|
|
191
|
+
declare const ko_KR_Kinship: string;
|
|
192
|
+
|
|
193
|
+
declare const ko_KR_Organization: string;
|
|
194
|
+
|
|
195
|
+
declare const ko_KR_Country: string;
|
|
196
|
+
|
|
197
|
+
declare const ko_KR_City: string;
|
|
198
|
+
|
|
199
|
+
declare const ko_KR_Address: string;
|
|
200
|
+
|
|
201
|
+
declare const ko_KR_ComputerTerm: string;
|
|
202
|
+
|
|
203
|
+
declare const ko_KR_NetworkTerms: string;
|
|
204
|
+
|
|
205
|
+
declare const ko_KR_Pronouns: string;
|
|
206
|
+
|
|
207
|
+
declare const ko_KR_Foods: string;
|
|
208
|
+
|
|
209
|
+
declare const ko_KR_Medicines: string;
|
|
210
|
+
|
|
211
|
+
declare const ko_KR_Luxury: string;
|
|
212
|
+
|
|
213
|
+
declare const ko_KR_Transportation: string;
|
|
214
|
+
|
|
215
|
+
declare const ko_KR_Appliances: string;
|
|
216
|
+
|
|
217
|
+
declare const ko_KR_Furniture: string;
|
|
218
|
+
|
|
219
|
+
declare const ko_KR_Pets: string;
|
|
220
|
+
|
|
221
|
+
export { en_US_Address, en_US_Appliances, en_US_City, en_US_ComputerTerm, en_US_Country, en_US_FamousName, en_US_FamousWorks, en_US_FirstName, en_US_Foods, en_US_Furniture, en_US_Honorific, en_US_Kinship, en_US_LastName, en_US_Luxury, en_US_Medicines, en_US_NetworkTerms, en_US_Nickname, en_US_Organization, en_US_Pets, en_US_Pronouns, en_US_Title, en_US_Transportation, ja_JP_Address, ja_JP_Appliances, ja_JP_City, ja_JP_ComputerTerm, ja_JP_Country, ja_JP_FamousName, ja_JP_FamousWorks, ja_JP_FirstName, ja_JP_Foods, ja_JP_Furniture, ja_JP_Honorific, ja_JP_Kinship, ja_JP_LastName, ja_JP_Luxury, ja_JP_Medicines, ja_JP_NetworkTerms, ja_JP_Nickname, ja_JP_Organization, ja_JP_Pets, ja_JP_Pronouns, ja_JP_Title, ja_JP_Transportation, ko_KR_Address, ko_KR_Appliances, ko_KR_City, ko_KR_ComputerTerm, ko_KR_Country, ko_KR_FamousName, ko_KR_FamousWorks, ko_KR_FirstName, ko_KR_Foods, ko_KR_Furniture, ko_KR_Honorific, ko_KR_Kinship, ko_KR_LastName, ko_KR_Luxury, ko_KR_Medicines, ko_KR_NetworkTerms, ko_KR_Nickname, ko_KR_Organization, ko_KR_Pets, ko_KR_Pronouns, ko_KR_Title, ko_KR_Transportation, zh_CN_Address, zh_CN_Appliances, zh_CN_City, zh_CN_ComputerTerm, zh_CN_Country, zh_CN_FamousName, zh_CN_FamousWorks, zh_CN_FirstName, zh_CN_Foods, zh_CN_Furniture, zh_CN_Honorific, zh_CN_Kinship, zh_CN_LastName, zh_CN_Luxury, zh_CN_Medicines, zh_CN_NetworkTerms, zh_CN_Nickname, zh_CN_Organization, zh_CN_Pets, zh_CN_Pronouns, zh_CN_Title, zh_CN_Transportation, zh_TW_Address, zh_TW_Appliances, zh_TW_City, zh_TW_ComputerTerm, zh_TW_Country, zh_TW_FamousName, zh_TW_FamousWorks, zh_TW_FirstName, zh_TW_Foods, zh_TW_Furniture, zh_TW_Honorific, zh_TW_Kinship, zh_TW_LastName, zh_TW_Luxury, zh_TW_Medicines, zh_TW_NetworkTerms, zh_TW_Nickname, zh_TW_Organization, zh_TW_Pets, zh_TW_Pronouns, zh_TW_Title, zh_TW_Transportation };
|