IGPAPI
    Preparing search index...

    Interface HttpRequestRenderer

    interface HttpRequestRenderer {
        renderRequest: (
            options: {
                body?: Buffer<ArrayBufferLike>;
                gzip?: boolean;
                headers?: Record<string, string>;
                method?: string;
                timeoutMs?: number;
                url: string;
            },
        ) => string
        | Promise<string>;
    }
    Index

    Properties

    Properties

    renderRequest: (
        options: {
            body?: Buffer<ArrayBufferLike>;
            gzip?: boolean;
            headers?: Record<string, string>;
            method?: string;
            timeoutMs?: number;
            url: string;
        },
    ) => string
    | Promise<string>