@kulupu-linku/sona 0.1.10 → 0.2.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/README.md +18 -3
- package/dist/client.d.ts +1 -802
- package/dist/client.js +103 -4
- package/dist/index.d.ts +1 -1159
- package/dist/index.js +148 -168
- package/dist/lib/client.d.ts +537 -0
- package/dist/lib/client.test.d.ts +27 -0
- package/dist/lib/index.d.ts +959 -0
- package/dist/lib/types.d.ts +17 -0
- package/dist/lib/utils.d.ts +13 -0
- package/dist/server/index.d.ts +392 -0
- package/dist/server/utils.d.ts +28 -0
- package/dist/server/v1/index.d.ts +394 -0
- package/dist/server/versioning.d.ts +2132 -0
- package/dist/utils-CnA4OULt.js +2777 -0
- package/dist/utils.d.ts +1 -16
- package/dist/utils.js +7 -12
- package/generated/languages.json +15 -0
- package/generated/word.json +16 -3
- package/generated/words.json +16 -3
- package/package.json +19 -15
- package/LICENSE +0 -674
- package/dist/chunk-QCIUEY5V.js +0 -38
- package/dist/types.d.ts +0 -2
- package/dist/types.js +0 -0
- package/generated/etymology.json +0 -20
- package/generated/representations.json +0 -43
- package/generated/resources.json +0 -30
- package/generated/sandbox.json +0 -302
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type { Font, LocalizedWord, ParametersTranslation, Sign } from '.';
|
|
2
|
+
export type WordRepresentations = LocalizedWord["representations"];
|
|
3
|
+
export type WordAudio = LocalizedWord["audio"];
|
|
4
|
+
export type WordUsage = LocalizedWord["usage"];
|
|
5
|
+
export type WordPuVerbatim = LocalizedWord["pu_verbatim"];
|
|
6
|
+
export type WordKuData = LocalizedWord["ku_data"];
|
|
7
|
+
export type WordTranslations = LocalizedWord["translations"];
|
|
8
|
+
export type WordTranslation = LocalizedWord["translations"][string];
|
|
9
|
+
export type LocalizedWordDefinition = WordTranslation["definition"];
|
|
10
|
+
export type LocalizedWordEtymology = WordTranslation["etymology"];
|
|
11
|
+
export type LocalizedWordCommentary = WordTranslation["commentary"];
|
|
12
|
+
export type LocalizedWordSitelenEtymology = WordTranslation["sp_etymology"];
|
|
13
|
+
export type SignEtymology = Sign["etymology"];
|
|
14
|
+
export type SignWriting = Sign["signwriting"];
|
|
15
|
+
export type SignVideo = Sign["video"];
|
|
16
|
+
export type LocalizedSignParameters = ParametersTranslation[string];
|
|
17
|
+
export type FontLinks = Font["links"];
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
export declare const Book: z.ZodUnion<[z.ZodLiteral<"pu">, z.ZodLiteral<"ku suli">, z.ZodLiteral<"ku lili">, z.ZodLiteral<"none">]>;
|
|
3
|
+
export type Book = z.infer<typeof Book>;
|
|
4
|
+
export declare const CoinedEra: z.ZodUnion<[z.ZodLiteral<"pre-pu">, z.ZodLiteral<"post-pu">, z.ZodLiteral<"post-ku">]>;
|
|
5
|
+
export type CoinedEra = z.infer<typeof CoinedEra>;
|
|
6
|
+
export declare const UsageCategory: z.ZodUnion<[z.ZodLiteral<"core">, z.ZodLiteral<"common">, z.ZodLiteral<"uncommon">, z.ZodLiteral<"obscure">, z.ZodLiteral<"sandbox">]>;
|
|
7
|
+
export type UsageCategory = z.infer<typeof UsageCategory>;
|
|
8
|
+
export declare const WritingSystem: z.ZodEnum<["sitelen pona", "sitelen sitelen", "alphabet", "syllabary", "logography", "tokiponido alphabet", "tokiponido syllabary", "tokiponido logography"]>;
|
|
9
|
+
export type WritingSystem = z.infer<typeof WritingSystem>;
|
|
10
|
+
export type * from "./types";
|
|
11
|
+
export declare function getTranslatedData<Obj extends {
|
|
12
|
+
translations: Record<string, object>;
|
|
13
|
+
}, Key extends keyof Obj["translations"][string]>(data: Obj, key: Key, language: string): Obj["translations"][string][Key];
|
|
@@ -0,0 +1,392 @@
|
|
|
1
|
+
declare const app: import("hono/hono-base").HonoBase<import("hono").Env, import("hono/types").MergeSchemaPath<import("hono").ToSchema<"get", "/", unknown, unknown> & import("hono").ToSchema<"get", "/words", {
|
|
2
|
+
query: {
|
|
3
|
+
lang?: string | string[] | undefined;
|
|
4
|
+
};
|
|
5
|
+
}, Record<string, {
|
|
6
|
+
id: string;
|
|
7
|
+
author_verbatim: string;
|
|
8
|
+
author_verbatim_source: string;
|
|
9
|
+
book: "pu" | "ku suli" | "ku lili" | "none";
|
|
10
|
+
coined_era: "" | "pre-pu" | "post-pu" | "post-ku";
|
|
11
|
+
coined_year: string;
|
|
12
|
+
creator: string[];
|
|
13
|
+
see_also: string[];
|
|
14
|
+
source_language: string;
|
|
15
|
+
usage_category: "core" | "common" | "uncommon" | "obscure" | "sandbox";
|
|
16
|
+
word: string;
|
|
17
|
+
deprecated: boolean;
|
|
18
|
+
etymology: {
|
|
19
|
+
word?: string | undefined;
|
|
20
|
+
alt?: string | undefined;
|
|
21
|
+
}[];
|
|
22
|
+
audio: {
|
|
23
|
+
author: string;
|
|
24
|
+
link: string;
|
|
25
|
+
}[];
|
|
26
|
+
usage: Record<string, number>;
|
|
27
|
+
translations: Record<string, {
|
|
28
|
+
etymology: {
|
|
29
|
+
language: string;
|
|
30
|
+
definition?: string | undefined;
|
|
31
|
+
}[];
|
|
32
|
+
commentary: string;
|
|
33
|
+
definition: string;
|
|
34
|
+
sp_etymology: string;
|
|
35
|
+
}>;
|
|
36
|
+
ku_data?: Record<string, number> | undefined;
|
|
37
|
+
resources?: {
|
|
38
|
+
sona_pona?: string | undefined;
|
|
39
|
+
lipamanka_semantic?: string | undefined;
|
|
40
|
+
} | undefined;
|
|
41
|
+
representations?: {
|
|
42
|
+
sitelen_emosi?: string | undefined;
|
|
43
|
+
sitelen_jelo?: string[] | undefined;
|
|
44
|
+
ligatures?: string[] | undefined;
|
|
45
|
+
sitelen_sitelen?: string | undefined;
|
|
46
|
+
ucsur?: string | undefined;
|
|
47
|
+
} | undefined;
|
|
48
|
+
pu_verbatim?: {
|
|
49
|
+
en: string;
|
|
50
|
+
fr: string;
|
|
51
|
+
de: string;
|
|
52
|
+
eo: string;
|
|
53
|
+
} | undefined;
|
|
54
|
+
}>> & import("hono").ToSchema<"get", "/words/:word", {
|
|
55
|
+
query: {
|
|
56
|
+
lang?: string | string[] | undefined;
|
|
57
|
+
};
|
|
58
|
+
} & {
|
|
59
|
+
param: {
|
|
60
|
+
word: string;
|
|
61
|
+
};
|
|
62
|
+
}, import("./utils").Result<{
|
|
63
|
+
id: string;
|
|
64
|
+
author_verbatim: string;
|
|
65
|
+
author_verbatim_source: string;
|
|
66
|
+
book: "pu" | "ku suli" | "ku lili" | "none";
|
|
67
|
+
coined_era: "" | "pre-pu" | "post-pu" | "post-ku";
|
|
68
|
+
coined_year: string;
|
|
69
|
+
creator: string[];
|
|
70
|
+
see_also: string[];
|
|
71
|
+
source_language: string;
|
|
72
|
+
usage_category: "core" | "common" | "uncommon" | "obscure" | "sandbox";
|
|
73
|
+
word: string;
|
|
74
|
+
deprecated: boolean;
|
|
75
|
+
etymology: {
|
|
76
|
+
word?: string | undefined;
|
|
77
|
+
alt?: string | undefined;
|
|
78
|
+
}[];
|
|
79
|
+
audio: {
|
|
80
|
+
author: string;
|
|
81
|
+
link: string;
|
|
82
|
+
}[];
|
|
83
|
+
usage: Record<string, number>;
|
|
84
|
+
translations: Record<string, {
|
|
85
|
+
etymology: {
|
|
86
|
+
language: string;
|
|
87
|
+
definition?: string | undefined;
|
|
88
|
+
}[];
|
|
89
|
+
commentary: string;
|
|
90
|
+
definition: string;
|
|
91
|
+
sp_etymology: string;
|
|
92
|
+
}>;
|
|
93
|
+
ku_data?: Record<string, number> | undefined;
|
|
94
|
+
resources?: {
|
|
95
|
+
sona_pona?: string | undefined;
|
|
96
|
+
lipamanka_semantic?: string | undefined;
|
|
97
|
+
} | undefined;
|
|
98
|
+
representations?: {
|
|
99
|
+
sitelen_emosi?: string | undefined;
|
|
100
|
+
sitelen_jelo?: string[] | undefined;
|
|
101
|
+
ligatures?: string[] | undefined;
|
|
102
|
+
sitelen_sitelen?: string | undefined;
|
|
103
|
+
ucsur?: string | undefined;
|
|
104
|
+
} | undefined;
|
|
105
|
+
pu_verbatim?: {
|
|
106
|
+
en: string;
|
|
107
|
+
fr: string;
|
|
108
|
+
de: string;
|
|
109
|
+
eo: string;
|
|
110
|
+
} | undefined;
|
|
111
|
+
}>> & import("hono").ToSchema<"get", "/sandbox", {
|
|
112
|
+
query: {
|
|
113
|
+
lang?: string | string[] | undefined;
|
|
114
|
+
};
|
|
115
|
+
}, Record<string, {
|
|
116
|
+
id: string;
|
|
117
|
+
author_verbatim: string;
|
|
118
|
+
author_verbatim_source: string;
|
|
119
|
+
book: "pu" | "ku suli" | "ku lili" | "none";
|
|
120
|
+
coined_era: "" | "pre-pu" | "post-pu" | "post-ku";
|
|
121
|
+
coined_year: string;
|
|
122
|
+
creator: string[];
|
|
123
|
+
see_also: string[];
|
|
124
|
+
source_language: string;
|
|
125
|
+
usage_category: "core" | "common" | "uncommon" | "obscure" | "sandbox";
|
|
126
|
+
word: string;
|
|
127
|
+
deprecated: boolean;
|
|
128
|
+
etymology: {
|
|
129
|
+
word?: string | undefined;
|
|
130
|
+
alt?: string | undefined;
|
|
131
|
+
}[];
|
|
132
|
+
audio: {
|
|
133
|
+
author: string;
|
|
134
|
+
link: string;
|
|
135
|
+
}[];
|
|
136
|
+
usage: Record<string, number>;
|
|
137
|
+
translations: Record<string, {
|
|
138
|
+
etymology: {
|
|
139
|
+
language: string;
|
|
140
|
+
definition?: string | undefined;
|
|
141
|
+
}[];
|
|
142
|
+
commentary: string;
|
|
143
|
+
definition: string;
|
|
144
|
+
sp_etymology: string;
|
|
145
|
+
}>;
|
|
146
|
+
ku_data?: Record<string, number> | undefined;
|
|
147
|
+
resources?: {
|
|
148
|
+
sona_pona?: string | undefined;
|
|
149
|
+
lipamanka_semantic?: string | undefined;
|
|
150
|
+
} | undefined;
|
|
151
|
+
representations?: {
|
|
152
|
+
sitelen_emosi?: string | undefined;
|
|
153
|
+
sitelen_jelo?: string[] | undefined;
|
|
154
|
+
ligatures?: string[] | undefined;
|
|
155
|
+
sitelen_sitelen?: string | undefined;
|
|
156
|
+
ucsur?: string | undefined;
|
|
157
|
+
} | undefined;
|
|
158
|
+
pu_verbatim?: {
|
|
159
|
+
en: string;
|
|
160
|
+
fr: string;
|
|
161
|
+
de: string;
|
|
162
|
+
eo: string;
|
|
163
|
+
} | undefined;
|
|
164
|
+
}>> & import("hono").ToSchema<"get", "/sandbox/:word", {
|
|
165
|
+
query: {
|
|
166
|
+
lang?: string | string[] | undefined;
|
|
167
|
+
};
|
|
168
|
+
} & {
|
|
169
|
+
param: {
|
|
170
|
+
word: string;
|
|
171
|
+
};
|
|
172
|
+
}, import("./utils").Result<{
|
|
173
|
+
id: string;
|
|
174
|
+
author_verbatim: string;
|
|
175
|
+
author_verbatim_source: string;
|
|
176
|
+
book: "pu" | "ku suli" | "ku lili" | "none";
|
|
177
|
+
coined_era: "" | "pre-pu" | "post-pu" | "post-ku";
|
|
178
|
+
coined_year: string;
|
|
179
|
+
creator: string[];
|
|
180
|
+
see_also: string[];
|
|
181
|
+
source_language: string;
|
|
182
|
+
usage_category: "core" | "common" | "uncommon" | "obscure" | "sandbox";
|
|
183
|
+
word: string;
|
|
184
|
+
deprecated: boolean;
|
|
185
|
+
etymology: {
|
|
186
|
+
word?: string | undefined;
|
|
187
|
+
alt?: string | undefined;
|
|
188
|
+
}[];
|
|
189
|
+
audio: {
|
|
190
|
+
author: string;
|
|
191
|
+
link: string;
|
|
192
|
+
}[];
|
|
193
|
+
usage: Record<string, number>;
|
|
194
|
+
translations: Record<string, {
|
|
195
|
+
etymology: {
|
|
196
|
+
language: string;
|
|
197
|
+
definition?: string | undefined;
|
|
198
|
+
}[];
|
|
199
|
+
commentary: string;
|
|
200
|
+
definition: string;
|
|
201
|
+
sp_etymology: string;
|
|
202
|
+
}>;
|
|
203
|
+
ku_data?: Record<string, number> | undefined;
|
|
204
|
+
resources?: {
|
|
205
|
+
sona_pona?: string | undefined;
|
|
206
|
+
lipamanka_semantic?: string | undefined;
|
|
207
|
+
} | undefined;
|
|
208
|
+
representations?: {
|
|
209
|
+
sitelen_emosi?: string | undefined;
|
|
210
|
+
sitelen_jelo?: string[] | undefined;
|
|
211
|
+
ligatures?: string[] | undefined;
|
|
212
|
+
sitelen_sitelen?: string | undefined;
|
|
213
|
+
ucsur?: string | undefined;
|
|
214
|
+
} | undefined;
|
|
215
|
+
pu_verbatim?: {
|
|
216
|
+
en: string;
|
|
217
|
+
fr: string;
|
|
218
|
+
de: string;
|
|
219
|
+
eo: string;
|
|
220
|
+
} | undefined;
|
|
221
|
+
}>> & import("hono").ToSchema<"get", "/luka_pona/fingerspelling", {
|
|
222
|
+
query: {
|
|
223
|
+
lang?: string | string[] | undefined;
|
|
224
|
+
};
|
|
225
|
+
}, Record<string, {
|
|
226
|
+
id: string;
|
|
227
|
+
etymology: {
|
|
228
|
+
language: string;
|
|
229
|
+
sign: string;
|
|
230
|
+
}[];
|
|
231
|
+
translations: Record<string, {
|
|
232
|
+
parameters: {
|
|
233
|
+
handshape?: string | undefined;
|
|
234
|
+
movement?: string | undefined;
|
|
235
|
+
placement?: string | undefined;
|
|
236
|
+
orientation?: string | undefined;
|
|
237
|
+
};
|
|
238
|
+
}>;
|
|
239
|
+
is_two_handed: boolean;
|
|
240
|
+
signwriting: {
|
|
241
|
+
fsw: string;
|
|
242
|
+
swu: string;
|
|
243
|
+
};
|
|
244
|
+
video: {
|
|
245
|
+
gif?: string | undefined;
|
|
246
|
+
mp4?: string | undefined;
|
|
247
|
+
};
|
|
248
|
+
}>> & import("hono").ToSchema<"get", "/luka_pona/fingerspelling/:sign", {
|
|
249
|
+
query: {
|
|
250
|
+
lang?: string | string[] | undefined;
|
|
251
|
+
};
|
|
252
|
+
} & {
|
|
253
|
+
param: {
|
|
254
|
+
sign: string;
|
|
255
|
+
};
|
|
256
|
+
}, import("./utils").Result<{
|
|
257
|
+
id: string;
|
|
258
|
+
etymology: {
|
|
259
|
+
language: string;
|
|
260
|
+
sign: string;
|
|
261
|
+
}[];
|
|
262
|
+
is_two_handed: boolean;
|
|
263
|
+
signwriting: {
|
|
264
|
+
fsw: string;
|
|
265
|
+
swu: string;
|
|
266
|
+
};
|
|
267
|
+
video: {
|
|
268
|
+
gif?: string | undefined;
|
|
269
|
+
mp4?: string | undefined;
|
|
270
|
+
};
|
|
271
|
+
}>> & import("hono").ToSchema<"get", "/luka_pona/signs", {
|
|
272
|
+
query: {
|
|
273
|
+
lang?: string | string[] | undefined;
|
|
274
|
+
};
|
|
275
|
+
}, Record<string, {
|
|
276
|
+
id: string;
|
|
277
|
+
etymology: {
|
|
278
|
+
language: string;
|
|
279
|
+
sign?: string | undefined;
|
|
280
|
+
}[];
|
|
281
|
+
translations: Record<string, {
|
|
282
|
+
parameters: {
|
|
283
|
+
handshape?: string | undefined;
|
|
284
|
+
movement?: string | undefined;
|
|
285
|
+
placement?: string | undefined;
|
|
286
|
+
orientation?: string | undefined;
|
|
287
|
+
};
|
|
288
|
+
icons: string;
|
|
289
|
+
}>;
|
|
290
|
+
definition: string;
|
|
291
|
+
is_two_handed: boolean;
|
|
292
|
+
new_gloss: string;
|
|
293
|
+
old_gloss: string;
|
|
294
|
+
signwriting: {
|
|
295
|
+
fsw: string;
|
|
296
|
+
swu: string;
|
|
297
|
+
};
|
|
298
|
+
video: {
|
|
299
|
+
gif: string;
|
|
300
|
+
mp4: string;
|
|
301
|
+
};
|
|
302
|
+
}>> & import("hono").ToSchema<"get", "/luka_pona/signs/:sign", {
|
|
303
|
+
query: {
|
|
304
|
+
lang?: string | string[] | undefined;
|
|
305
|
+
};
|
|
306
|
+
} & {
|
|
307
|
+
param: {
|
|
308
|
+
sign: string;
|
|
309
|
+
};
|
|
310
|
+
}, import("./utils").Result<{
|
|
311
|
+
id: string;
|
|
312
|
+
etymology: {
|
|
313
|
+
language: string;
|
|
314
|
+
sign?: string | undefined;
|
|
315
|
+
}[];
|
|
316
|
+
definition: string;
|
|
317
|
+
is_two_handed: boolean;
|
|
318
|
+
new_gloss: string;
|
|
319
|
+
old_gloss: string;
|
|
320
|
+
signwriting: {
|
|
321
|
+
fsw: string;
|
|
322
|
+
swu: string;
|
|
323
|
+
};
|
|
324
|
+
video: {
|
|
325
|
+
gif: string;
|
|
326
|
+
mp4: string;
|
|
327
|
+
};
|
|
328
|
+
}>> & import("hono").ToSchema<"get", "/fonts", unknown, Record<string, {
|
|
329
|
+
id: string;
|
|
330
|
+
creator: string[];
|
|
331
|
+
ligatures: boolean;
|
|
332
|
+
ucsur: boolean;
|
|
333
|
+
features: string[];
|
|
334
|
+
filename: string;
|
|
335
|
+
license: string;
|
|
336
|
+
name: string;
|
|
337
|
+
style: string;
|
|
338
|
+
version: string;
|
|
339
|
+
writing_system: "sitelen pona" | "sitelen sitelen" | "alphabet" | "syllabary" | "logography" | "tokiponido alphabet" | "tokiponido syllabary" | "tokiponido logography";
|
|
340
|
+
links: {
|
|
341
|
+
fontfile?: string | undefined;
|
|
342
|
+
repo?: string | undefined;
|
|
343
|
+
webpage?: string | undefined;
|
|
344
|
+
};
|
|
345
|
+
last_updated?: string | undefined;
|
|
346
|
+
}>> & import("hono").ToSchema<"get", "/fonts/:font", {
|
|
347
|
+
param: {
|
|
348
|
+
font: string;
|
|
349
|
+
};
|
|
350
|
+
}, import("./utils").Result<{
|
|
351
|
+
id: string;
|
|
352
|
+
creator: string[];
|
|
353
|
+
ligatures: boolean;
|
|
354
|
+
ucsur: boolean;
|
|
355
|
+
features: string[];
|
|
356
|
+
filename: string;
|
|
357
|
+
license: string;
|
|
358
|
+
name: string;
|
|
359
|
+
style: string;
|
|
360
|
+
version: string;
|
|
361
|
+
writing_system: "sitelen pona" | "sitelen sitelen" | "alphabet" | "syllabary" | "logography" | "tokiponido alphabet" | "tokiponido syllabary" | "tokiponido logography";
|
|
362
|
+
links: {
|
|
363
|
+
fontfile?: string | undefined;
|
|
364
|
+
repo?: string | undefined;
|
|
365
|
+
webpage?: string | undefined;
|
|
366
|
+
};
|
|
367
|
+
last_updated?: string | undefined;
|
|
368
|
+
}>> & import("hono").ToSchema<"get", "/languages", unknown, Record<string, {
|
|
369
|
+
id: string;
|
|
370
|
+
name: {
|
|
371
|
+
en: string;
|
|
372
|
+
tok?: string | undefined;
|
|
373
|
+
endonym?: string | undefined;
|
|
374
|
+
};
|
|
375
|
+
locale: string;
|
|
376
|
+
direction: "ltr" | "rtl";
|
|
377
|
+
}>> & import("hono").ToSchema<"get", "/languages/:language", {
|
|
378
|
+
param: {
|
|
379
|
+
language: string;
|
|
380
|
+
};
|
|
381
|
+
}, import("./utils").Result<{
|
|
382
|
+
id: string;
|
|
383
|
+
name: {
|
|
384
|
+
en: string;
|
|
385
|
+
tok?: string | undefined;
|
|
386
|
+
endonym?: string | undefined;
|
|
387
|
+
};
|
|
388
|
+
locale: string;
|
|
389
|
+
direction: "ltr" | "rtl";
|
|
390
|
+
}>>, "/v1"> & import("hono").ToSchema<"get", "/", unknown, unknown>, "/">;
|
|
391
|
+
export default app;
|
|
392
|
+
export type AppType = typeof app;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { Languages } from '../lib';
|
|
2
|
+
import { TypedResponse } from "hono";
|
|
3
|
+
export type Result<T> = {
|
|
4
|
+
ok: true;
|
|
5
|
+
data: T;
|
|
6
|
+
} | {
|
|
7
|
+
ok: false;
|
|
8
|
+
message: string;
|
|
9
|
+
};
|
|
10
|
+
export type ApiResponse<T> = Promise<TypedResponse<T>>;
|
|
11
|
+
export declare const entries: <const T extends object>(o: T) => { [K in keyof T]: [K, T[K]]; }[keyof T][];
|
|
12
|
+
export declare const keys: <const K extends PropertyKey>(o: Record<K, any>) => K[];
|
|
13
|
+
export declare const filterObject: <const T extends object>(o: T, predicate: (o: [keyof T, T[keyof T]]) => boolean) => {
|
|
14
|
+
[k: string]: T[keyof T];
|
|
15
|
+
};
|
|
16
|
+
export declare const langIdCoalesce: (lang: string, langs: Languages) => string | null;
|
|
17
|
+
export declare const langValidator: import("hono").MiddlewareHandler<import("hono").Env, string, {
|
|
18
|
+
in: {
|
|
19
|
+
query: {
|
|
20
|
+
lang?: string | string[] | undefined;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
out: {
|
|
24
|
+
query: {
|
|
25
|
+
lang?: string | undefined;
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
}>;
|