This interface can be augmented by users to add types to i18next default TypeOptions.
i18next
Usage:
// i18next.d.tsimport 'i18next';declare module 'i18next' { interface CustomTypeOptions { defaultNS: 'custom'; returnNull: false; returnObjects: false; nsSeparator: ':'; keySeparator: '.'; jsonFormat: 'v4'; allowObjectInHTMLChildren: false; resources: { custom: { foo: 'foo'; }; }; }} Copy
// i18next.d.tsimport 'i18next';declare module 'i18next' { interface CustomTypeOptions { defaultNS: 'custom'; returnNull: false; returnObjects: false; nsSeparator: ':'; keySeparator: '.'; jsonFormat: 'v4'; allowObjectInHTMLChildren: false; resources: { custom: { foo: 'foo'; }; }; }}
Generated using TypeDoc
This interface can be augmented by users to add types to
i18next
default TypeOptions.Usage: