@playlive/twitch-charity
    Preparing search index...

    Interface TwitchCharityClientOptions

    Common shape for both endpoints.

    interface TwitchCharityClientOptions {
        baseUrl: string;
        fetch?: typeof fetch;
        signal?: AbortSignal;
    }

    Hierarchy (View Summary)

    Index
    baseUrl: string

    Absolute URL of the Twitch charity proxy (no trailing slash).

    "https://twitch-charity-proxy.experience.stjude.org"
    
    fetch?: typeof fetch

    Optional fetch override — defaults to the global fetch. Use this for testing or to plug in a wrapped fetch (retries, tracing, etc.).

    signal?: AbortSignal

    Optional AbortSignal forwarded to the underlying request. The caller owns the controller; this client never aborts on its own.