The resolved value of a Fluent message or term reference.

See getMessageFunction.

interface MessageReferenceValue {
    dir: "ltr" | "rtl" | "auto";
    options?: object;
    source: string;
    type: "fluent-message";
    selectKey(keys: Set<string>): null | string;
    toParts(): [MessageReferencePart];
    toString(): string;
    valueOf(): string;
}

Hierarchy (View Summary)

Properties

dir: "ltr" | "rtl" | "auto"
options?: object
source: string
type: "fluent-message"

Methods

  • Parameters

    • keys: Set<string>

    Returns null | string