Nativescript plugin for https requests
    Preparing search index...

    Interface HttpsResponse<T>

    interface HttpsResponse<T = any> {
        content?: T;
        contentLength: number;
        description?: string;
        failure?: any;
        headers?: Headers;
        reason?: string;
        response?: string;
        statusCode?: number;
        url?: string;
    }

    Type Parameters

    • T = any
    Index

    Properties

    content?: T
    contentLength: number
    description?: string
    failure?: any
    headers?: Headers
    reason?: string
    response?: string
    statusCode?: number
    url?: string