Unicode MessageFormat for JavaScript
    Preparing search index...

    Interface MessageStringPart

    The formatted part for a MessageString value.

    interface MessageStringPart {
        dir?: "ltr" | "rtl";
        id?: string;
        locale: string;
        parts?: { type: string; value?: unknown }[];
        type: "string";
        value: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    dir?: "ltr" | "rtl"
    id?: string
    locale: string
    parts?: { type: string; value?: unknown }[]
    type: "string"
    value: string