2026-03-10 03:05:06 +02:00
|
|
|
import "i18next";
|
|
|
|
|
|
2026-03-22 04:08:56 +02:00
|
|
|
import resources from "./resources";
|
2026-03-10 03:05:06 +02:00
|
|
|
|
|
|
|
|
declare module "i18next" {
|
|
|
|
|
interface CustomTypeOptions {
|
|
|
|
|
resources: { translation: typeof resources };
|
2026-03-22 04:08:56 +02:00
|
|
|
strictKeyChecks: true;
|
|
|
|
|
enableSelector: true;
|
2026-03-10 03:05:06 +02:00
|
|
|
}
|
|
|
|
|
}
|