@shopify/cli-kit
    Preparing search index...

    Interface RestResponse

    Respose of a REST request.

    interface RestResponse {
        headers: Record<string, string[]>;
        json: any;
        status: number;
    }
    Index

    Properties

    Properties

    headers: Record<string, string[]>

    HTTP response headers.

    json: any

    REST JSON respose.

    status: number

    HTTP response status.