mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-20 09:42:12 +03:00
9 lines
192 B
TypeScript
9 lines
192 B
TypeScript
|
import { defaultNS, resources } from "./resources";
|
||
|
|
||
|
declare module "i18next" {
|
||
|
interface CustomTypeOptions {
|
||
|
defaultNS: typeof defaultNS;
|
||
|
resources: (typeof resources)["en"];
|
||
|
}
|
||
|
}
|