Saxonberg Server API
    Preparing search index...

    Interface TwitchTransport

    Injected transport: HTTP + websocket. Real impl wraps fetch/ws.

    interface TwitchTransport {
        fetch: (
            input: string | URL | Request,
            init?: RequestInit,
        ) => Promise<Response>;
        openWebSocket(url: string): TwitchSocket;
    }
    Index

    Properties

    Methods

    Properties

    fetch: (input: string | URL | Request, init?: RequestInit) => Promise<Response>

    Methods