UNPKG

i18n-js

Version:

A small library to provide I18n on JavaScript.

10 lines (9 loc) 285 B
import { Scope, TranslateOptions } from "../typing"; import { I18n } from "../I18n"; export declare function pluralize({ i18n, count, scope, options, baseScope, }: { i18n: I18n; count: number; scope: Scope; options: TranslateOptions; baseScope: string; }): string;