The base formatted part for all expressions.

interface MessageExpressionPart<P extends string> {
    dir?: "ltr" | "rtl";
    id?: string;
    locale?: string;
    parts?: { source?: string; type: string; value?: unknown }[];
    source: string;
    type: P;
    value?: unknown;
}

Type Parameters

  • P extends string

    The "type" of the formatted part

Hierarchy (View Summary)

Properties

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