12 lines
225 B
TypeScript
12 lines
225 B
TypeScript
import "i18next";
|
|
|
|
import resources from "./resources";
|
|
|
|
declare module "i18next" {
|
|
interface CustomTypeOptions {
|
|
resources: { translation: typeof resources };
|
|
strictKeyChecks: true;
|
|
enableSelector: true;
|
|
}
|
|
}
|