Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 | 119x 1555x 13988x | import type resources from "i18n/resources";
import { TFunction as TFunctionOriginal } from "i18next";
import { Trans as nextTrans, useTranslation as nextUseTranslation } from "next-i18next";
export const Trans = nextTrans;
export const useTranslation = nextUseTranslation;
export type TFunction = TFunctionOriginal<(keyof typeof resources)[], undefined>;
|