Webigail
    Preparing search index...

    Interface IZHttpResult<TResult>

    Represents a result from an http request.

    interface IZHttpResult<TResult = any> {
        data: TResult;
        headers: Record<string, any>;
        status: ZHttpCode;
    }

    Type Parameters

    • TResult = any
    Index

    Properties

    Properties

    data: TResult

    The actual body result of the invocation.

    headers: Record<string, any>

    The set of headers that was returned.

    status: ZHttpCode

    The status code.