@carlosnc/tmdb-sdk - v0.13.2
    Preparing search index...

    Interface HttpClient

    interface HttpClient {
        delete<T = any>(
            url: string,
            config?: HttpRequestConfig,
        ): Promise<HttpResponse<T>>;
        get<T = any>(
            url: string,
            config?: HttpRequestConfig,
        ): Promise<HttpResponse<T>>;
        post<T = any>(
            url: string,
            data?: any,
            config?: HttpRequestConfig,
        ): Promise<HttpResponse<T>>;
        put<T = any>(
            url: string,
            data?: any,
            config?: HttpRequestConfig,
        ): Promise<HttpResponse<T>>;
    }

    Implemented by

    Index

    Methods

    Methods

    post