pl-api
    Preparing search index...

    Type Alias PlApiResponse<T>

    type PlApiResponse<T = any> = {
        data: string;
        headers: Headers;
        json: T;
        ok: boolean;
        redirected: boolean;
        status: number;
        statusText: string;
        type: ResponseType;
        url: string;
    }

    Type Parameters

    • T = any
    Index

    Properties

    data: string
    headers: Headers
    json: T
    ok: boolean
    redirected: boolean
    status: number
    statusText: string
    type: ResponseType
    url: string