> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tappify.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# ExpressLikeResponse

> The part of an Express response toExpress writes.

The part of an Express response `toExpress` writes.

## Methods

### send()

```ts theme={null}
send(body): void;
```

Called once, with the handler's response body as text.

#### Parameters

##### body

`string`

#### Returns

`void`

***

### setHeader()

```ts theme={null}
setHeader(name, value): void;
```

Called once per header the handler's response carries.

#### Parameters

##### name

`string`

##### value

`string`

#### Returns

`void`

***

### status()

```ts theme={null}
status(code): ExpressLikeResponse;
```

Sets the status and returns the response, so the call chains into `send`.

#### Parameters

##### code

`number`

#### Returns

`ExpressLikeResponse`
