SongGuess
    Preparing search index...

    Type Alias Fetcher<T, Reserved>

    Fetcher: (
        T extends EntrypointBranded
            ? Provider<T, Reserved | "fetch" | "connect">
            : unknown
    ) & {
        connect(
            address: string | SocketAddress,
            options?: SocketOptions,
        ): Socket;
        fetch(
            input: URL | RequestInfo,
            init?: RequestInit<CfProperties<unknown>>,
        ): Promise<Response>;
    }

    Type Parameters