[Go to site: main page, start]

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;
    type: "string";
    selectKey(keys: Set<string>): string | null;
    toParts(): [MessageStringPart];
    toString(): string;
    valueOf(): string;
}

Hierarchy (View Summary)

Index

Properties

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

Methods

  • Parameters

    • keys: Set<string>

    Returns string | null