Unicode MessageFormat for JavaScript
    Preparing search index...

    Interface MessageNumberPart

    The formatted part for a MessageNumber value.

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

    Hierarchy (View Summary)

    Index

    Properties

    dir?: "ltr" | "rtl"
    id?: string
    locale: string
    parts: NumberFormatPart[]
    type: "number"
    value?: unknown