Unicode MessageFormat for JavaScript
    Preparing search index...

    Interface MessageFallbackPart

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

    Hierarchy (View Summary)

    Index

    Properties

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