Beignet API reference
    Preparing search index...

    Interface HttpResponseLike

    Framework-neutral response object returned by route handlers and hooks.

    interface HttpResponseLike {
        body?: unknown;
        headers?: HttpResponseHeaders;
        status: number;
    }
    Index
    body?: unknown

    JSON-serializable body or an adapter-specific body value.

    Response headers. Array values are emitted as repeated header fields.

    status: number

    HTTP status code.