10 lines
195 B
TypeScript
10 lines
195 B
TypeScript
|
|
import "i18next";
|
||
|
|
|
||
|
|
import type { resources } from "../public/locales/en.d.ts";
|
||
|
|
|
||
|
|
declare module "i18next" {
|
||
|
|
interface CustomTypeOptions {
|
||
|
|
resources: { translation: typeof resources };
|
||
|
|
}
|
||
|
|
}
|