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