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 | 90x 1765x 11134x | 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
>;
|