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

Hierarchy (View Summary)

Properties

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