UNPKG

@neiderruiz/translate-files

Version:

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

9 lines (8 loc) 298 B
import { TypeListLang } from "../../translate/types/langs"; type ConfigOptions = { locales: TypeListLang[]; defaultLocale: TypeListLang; apiKey?: string; }; export declare const generateWriteTranslations: ({ defaultLocale, locales, apiKey }: ConfigOptions) => Promise<void>; export {};