screeps-api
    Preparing search index...

    Interface ScreepsHttpResponse<T>

    interface ScreepsHttpResponse<
        T extends ScreepsResponse
        | ScreepsErrorResponse = ScreepsResponse,
    > {
        data: T;
        method: ScreepsHttpMethod;
        params: unknown;
        path: string;
        retriesAttempted: number;
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    data: T

    The data field from the response body

    params: unknown
    path: string
    retriesAttempted: number