Used to represent runtime/formatting errors.

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

Hierarchy (View Summary)

Properties

dir?: "ltr" | "rtl" | "auto"
options?: object
selectKey?: (keys: Set<string>) => null | string
source: string
type: "fallback"
valueOf?: () => unknown

Methods