Initial commit

This commit is contained in:
2025-10-04 18:22:24 +03:00
commit 2852c2c054
291 changed files with 38109 additions and 0 deletions

8
src/i18n/i18next.d.ts vendored Normal file
View File

@@ -0,0 +1,8 @@
import "i18next";
// declare custom type options so the return is always a string.
declare module "i18next" {
interface CustomTypeOptions {
returnNull: false;
}
}