The resolved value of a :string expression, or of an expression with a literal operand and no function.

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

Hierarchy (View Summary)

Properties

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

Methods

  • Parameters

    • keys: Set<string>

    Returns null | string