The text content that is part of a message.

interface TextDeltaBlock {
    index: number;
    type: "text";
    text?: TextDelta;
}

Properties

Properties

index: number

The index of the content part in the message.

type: "text"

Always text.

text?: TextDelta