ngx-translate-testing
Version:
A library of utilities for testing with the ngx-translate i18n Angular library
21 lines • 637 B
TypeScript
export declare type LanguageTranslation = string | string[] | {
[translationKey: string]: LanguageTranslation;
};
/**
* LanguageTranslations represents a mapping between a translation key and the translation for that key
* or to nested translation keys.
*
* @export
*/
export interface LanguageTranslations {
[translationKey: string]: LanguageTranslation;
}
/**
* Translations represents a mapping between a language and the translations for that language.
*
* @export
*/
export interface Translations {
[language: string]: LanguageTranslations;
}
//# sourceMappingURL=translations.model.d.ts.map