The formatted part for a MessageDateTime value.

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

Hierarchy (View Summary)

Properties

dir?: "ltr" | "rtl"
id?: string
locale: string
parts: DateTimeFormatPart[]
source: string
type: "datetime"
value?: unknown