SongGuess
    Preparing search index...
    interface WorkerLoaderWorkerCode {
        allowExperimental?: boolean;
        compatibilityDate: string;
        compatibilityFlags?: string[];
        env?: any;
        globalOutbound?:
            | {
                connect(
                    address: string | SocketAddress,
                    options?: SocketOptions,
                ): Socket;
                fetch(
                    input: URL | RequestInfo,
                    init?: RequestInit<CfProperties<unknown>>,
                ): Promise<Response>;
            }
            | null;
        limits?: workerdResourceLimits;
        mainModule: string;
        modules: Record<string, WorkerLoaderModule | string>;
        streamingTails?: {
            connect(
                address: string | SocketAddress,
                options?: SocketOptions,
            ): Socket;
            fetch(
                input: URL | RequestInfo,
                init?: RequestInit<CfProperties<unknown>>,
            ): Promise<Response>;
        }[];
        tails?: {
            connect(
                address: string | SocketAddress,
                options?: SocketOptions,
            ): Socket;
            fetch(
                input: URL | RequestInfo,
                init?: RequestInit<CfProperties<unknown>>,
            ): Promise<Response>;
        }[];
    }
    Index

    Properties

    allowExperimental?: boolean
    compatibilityDate: string
    compatibilityFlags?: string[]
    env?: any
    globalOutbound?:
        | {
            connect(
                address: string | SocketAddress,
                options?: SocketOptions,
            ): Socket;
            fetch(
                input: URL | RequestInfo,
                init?: RequestInit<CfProperties<unknown>>,
            ): Promise<Response>;
        }
        | null
    mainModule: string
    modules: Record<string, WorkerLoaderModule | string>
    streamingTails?: {
        connect(
            address: string | SocketAddress,
            options?: SocketOptions,
        ): Socket;
        fetch(
            input: URL | RequestInfo,
            init?: RequestInit<CfProperties<unknown>>,
        ): Promise<Response>;
    }[]
    tails?: {
        connect(
            address: string | SocketAddress,
            options?: SocketOptions,
        ): Socket;
        fetch(
            input: URL | RequestInfo,
            init?: RequestInit<CfProperties<unknown>>,
        ): Promise<Response>;
    }[]