@violentmonkey/types
    Preparing search index...

    Interface VMScriptResponseObject<T>

    interface VMScriptResponseObject<T> {
        context?: unknown;
        finalUrl: string;
        lengthComputable?: boolean;
        loaded?: number;
        readyState: number;
        response: T;
        responseHeaders: string;
        responseText: string;
        responseXML: Document;
        status: number;
        statusText: string;
        total?: number;
    }

    Type Parameters

    • T
    Index
    context?: unknown

    The same context object you specified in details.

    finalUrl: string

    The final URL after redirection.

    lengthComputable?: boolean
    loaded?: number
    readyState: number
    response: T
    responseHeaders: string
    responseText: string
    responseXML: Document
    status: number
    statusText: string
    total?: number