i18next“t”变量的类型是什么(TYPESCRIPT)
what is the type of i18next " t " variable (TYPESCRIPT)
我使用 i18next,我想将 t 函数 prop 传递到我的界面。
exp:
const { t } = useTranslation();
export interface ITranslate {
translate: ... type?
}
“t”变量的类型是什么?
您可以使用 ReturnType
实用程序类型:
export interface ITranslate {
translate: ReturnType<typeof useTranslation>['t']
}
我使用 i18next,我想将 t 函数 prop 传递到我的界面。
exp:
const { t } = useTranslation();
export interface ITranslate {
translate: ... type?
}
“t”变量的类型是什么?
您可以使用 ReturnType
实用程序类型:
export interface ITranslate {
translate: ReturnType<typeof useTranslation>['t']
}