mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-10-17 12:00:50 -04:00
10 lines
197 B
TypeScript
10 lines
197 B
TypeScript
import "i18next";
|
|
import type en from "./public/translations/en.json";
|
|
|
|
declare module "i18next" {
|
|
interface CustomTypeOptions {
|
|
returnNull: false;
|
|
resources: { translation: typeof en };
|
|
}
|
|
}
|