The formatted part for a MessageReferenceValue.

interface MessageReferencePart {
    dir?: "ltr" | "rtl";
    id?: string;
    locale?: string;
    parts: MessagePart<string>[];
    source: string;
    type: "fluent-message";
    value?: unknown;
}

Hierarchy (View Summary)

Properties

dir?: "ltr" | "rtl"
id?: string
locale?: string
parts: MessagePart<string>[]
source: string
type: "fluent-message"
value?: unknown