@muspellheim/shared
    Preparing search index...

    Interface ResponseData

    This data object configures the response of a fetch stub call.

    interface ResponseData {
        body?: null | string | object | Blob;
        status: number;
        statusText: string;
    }
    Index

    Properties

    body?: null | string | object | Blob

    The optional response body.

    status: number

    The HTTP status code.

    statusText: string

    The HTTP status text.