A11 TypeScript API - v0.2.1
    Preparing search index...

    Interface HttpSseOptions

    HTTP endpoints and resource bounds for an SSE client stream.

    interface HttpSseOptions {
        connectEndpoint?: string;
        fetch?: FetchFunction;
        maxEventSize?: number;
        messageEndpoint?: string;
        requestInit?: Omit<RequestInit, "signal" | "body" | "method" | "headers">;
        streamOptions?: WireStreamOptions;
    }
    Index
    connectEndpoint?: string

    Absolute POST path used to open the inbound text/event-stream response.

    Fetch implementation; defaults to globalThis.fetch.

    maxEventSize?: number

    Maximum UTF-8 bytes accepted in one SSE event.

    messageEndpoint?: string

    Absolute path template containing one {id} for outbound messages.

    requestInit?: Omit<RequestInit, "signal" | "body" | "method" | "headers">

    Extra Fetch options applied without overriding A11 method/body fields.

    streamOptions?: WireStreamOptions

    Wire-level buffering, timeout, and message-size limits.