Interface ContentBlockDeltaEvent

interface ContentBlockDeltaEvent {
    delta: {
        text: string;
        type: "text_delta";
    };
    index: number;
    type: string;
}

Hierarchy

  • AnthropicStreamEvent
    • ContentBlockDeltaEvent

Properties

Properties

delta: {
    text: string;
    type: "text_delta";
}

Type declaration

  • text: string
  • type: "text_delta"
index: number
type: string