UNPKG

generaltranslation

Version:

A language toolkit for AI developers

5 lines (4 loc) 348 B
import { LocaleProperties } from './getLocaleProperties'; export type FullCustomMapping = Record<string, LocaleProperties>; export type CustomMapping = Record<string, string | Partial<LocaleProperties>>; export declare const getCustomProperty: (customMapping: CustomMapping, locale: string, property: keyof LocaleProperties) => string | undefined;