mirror of
https://github.com/QuivrHQ/quivr.git
synced 2025-01-07 08:07:44 +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"];
|
||
|
}
|
||
|
}
|