UNPKG

@bmat/translation-management

Version:

Manage Front-End translations from multiple sources

8 lines (7 loc) 138 B
/** * Shared Interfaces */ export declare type I18nJson = string | I18nNode; export interface I18nNode { [key: string]: I18nJson; }