summaryrefslogtreecommitdiff
path: root/src/@types
diff options
context:
space:
mode:
Diffstat (limited to 'src/@types')
-rw-r--r--src/@types/langmap.d.ts10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/@types/langmap.d.ts b/src/@types/langmap.d.ts
new file mode 100644
index 0000000000..a0f99028ab
--- /dev/null
+++ b/src/@types/langmap.d.ts
@@ -0,0 +1,10 @@
+declare module 'langmap' {
+ type Lang = {
+ nativeName: string;
+ englishName: string;
+ };
+
+ const langmap: { [lang: string]: Lang };
+
+ export = langmap;
+}