UNPKG

react-intl

Version:

Internationalize React apps. This library provides React components and an API to format dates, numbers, and strings, including pluralization and handling translations.

3 lines (2 loc) 331 B
import { IntlConfig, Formatters, IntlFormatters } from '../types'; export declare function formatPlural({ locale, onError }: Pick<IntlConfig, 'locale' | 'onError'>, getPluralRules: Formatters['getPluralRules'], value: Parameters<IntlFormatters['formatPlural']>[0], options?: Parameters<IntlFormatters['formatPlural']>[1]): string;