UNPKG

@bmat/translation-management

Version:

Manage Front-End translations from multiple sources

8 lines (7 loc) 298 B
import { I18nJson } from 'lib/interfaces/i18n-json.interface'; /** * Merges two i18nJSON files. The resulting file will have all * the master translation replaced by the slave translations that may * exists */ export declare function mergeI18nJson(master: I18nJson, slave: I18nJson): I18nJson;