@phensley/cldr-core
Version:
Core library for @phensley/cldr
8 lines (7 loc) • 355 B
TypeScript
import { PluralType } from '@phensley/cldr-schema';
import { PluralInternals } from '..';
import { NumberOperands } from '../../types/numbers';
export declare class PluralInternalsImpl implements PluralInternals {
cardinal(language: string, operands: NumberOperands): PluralType;
ordinal(language: string, operands: NumberOperands): PluralType;
}