UNPKG

@particular.cloud/i18n-js

Version:

The i18n javascript and typescript sdk of particular.cloud

10 lines (9 loc) 247 B
import { Key, Locale, TextValue } from './TranslationRecords'; interface Text { key: Key; value: TextValue; locale: Locale; } declare type TextQuery = [Locale | undefined, Key]; export type { TextQuery }; export default Text;