@conciergus/chat - v0.3.1
    Preparing search index...

    Interface StreamingConnection

    interface StreamingConnection {
        id: string;
        messageId?: string;
        stream:
            | AsyncIterable<EnhancedStreamPart, any, any>
            | ReadableStream<EnhancedStreamPart>;
        abortController?: AbortController;
        startTime: number;
        status: "error" | "completed" | "streaming" | "connecting" | "aborted";
    }
    Index

    Properties

    id: string
    messageId?: string
    stream:
        | AsyncIterable<EnhancedStreamPart, any, any>
        | ReadableStream<EnhancedStreamPart>
    abortController?: AbortController
    startTime: number
    status: "error" | "completed" | "streaming" | "connecting" | "aborted"