UNPKG

@rustling-pines/typesafe-locale-generator

Version:

A TypeScript-based tool to generate locale JSON files for i18n frameworks with type safety. It ensures missing translations are caught during development, reducing errors and streamlining localization. Fully customizable input/output paths, compatible wit

6 lines (5 loc) 115 B
export type ITranslations<TLocales extends string> = { key: string; } & { [locale in TLocales]: string; };