9 lines
172 B
TypeScript
9 lines
172 B
TypeScript
import "i18next";
|
|
|
|
// declare custom type options so the return is always a string.
|
|
declare module "i18next" {
|
|
interface CustomTypeOptions {
|
|
returnNull: false;
|
|
}
|
|
}
|