kinetex - v1.0.0-rc.1
    Preparing search index...

    Interface SSEEvent

    A single parsed SSE event following the WHATWG EventSource specification.

    interface SSEEvent {
        id: string | null;
        event: string;
        data: string;
        retry: number | null;
        raw: string[];
    }
    Index

    Properties

    Properties

    id: string | null

    Value of the id: field. null if not present.

    event: string

    Value of the event: field. Defaults to "message".

    data: string

    Concatenated data: lines joined by newline.

    retry: number | null

    Value of the retry: field in ms. null if not present.

    raw: string[]

    Raw lines that composed this event (for debugging).