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 9 10 11 12 13 14 | 74x 942x 6087x | import 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 >; |