Interface Response

interface Response {
    data?: string | Record<string, unknown>;
    response: Record<string, unknown>;
    status: number;
    xhr: XMLHttpRequest;
}

Properties

data?: string | Record<string, unknown>
response: Record<string, unknown>
status: number
xhr: XMLHttpRequest