UNPKG

@neiderruiz/translate-files

Version:

Internationalize and manage your website easily with (CSV or JSON to i18n)

11 lines (9 loc) 267 B
import { useTypedTranslation} from './hooks/use-translation'; export { useTypedTranslation, }; export type FlattenKeys<T> = T extends object ? { [K in keyof T & string]: T[K] extends string ? K : `${K}.${FlattenKeys<T[K]>}` }[keyof T & string] : '';