@neiderruiz/translate-files
Version:
Internationalize and manage your website easily with (CSV or JSON to i18n)
17 lines (13 loc) • 319 B
text/typescript
export type TypeSimpleJson = {
[key: string]: string;
};
export type TranslationsOrder = {
[key: string]: { [key: string]: string };
};
export type ObjectWithStringKeys = { [key: string]: any };
export type FlattenWriteTranslationJson = {
[key: string]: {
message: string;
description?: string;
};
}