The resolved value of a :currency, :integer, :math, :number, or :unit expression.

interface MessageNumber {
    dir: "ltr" | "rtl" | "auto";
    options: Readonly<NumberFormatOptions & PluralRulesOptions>;
    selectKey?: (keys: Set<string>) => null | string;
    source: string;
    toParts?: () => [MessageNumberPart];
    toString?: () => string;
    type: "number";
    valueOf(): number | bigint;
}

Hierarchy (View Summary)

Properties

dir: "ltr" | "rtl" | "auto"
options: Readonly<NumberFormatOptions & PluralRulesOptions>
selectKey?: (keys: Set<string>) => null | string

In addition to matching exact values, numerical values may also match keys with the same plural rule category, i.e. one of zero, one, two, few, many, and other.

Different languages use different subset of plural rule categories. For example, cardinal English plurals only use one and other, so a key zero will never be matched for that locale.

source: string
toParts?: () => [MessageNumberPart]
toString?: () => string
type: "number"

Methods

  • Returns number | bigint