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

Properties

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