Unicode MessageFormat for JavaScript
    Preparing search index...

    Interface MessageReferencePart

    The formatted part for a MessageReferenceValue.

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

    Hierarchy (View Summary)

    Index

    Properties

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