Skip to content

Commit

Permalink
Add null in codeblock
Browse files Browse the repository at this point in the history
  • Loading branch information
ankur22 authored and inancgumus committed Jun 7, 2024
1 parent 89f23b5 commit f02d3fe
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ Returns the value of the header matching the name. The name is case insensitive.

### Returns

| Type | Description |
| ------------------------- | ------------------------------------------------------------------------------------- |
| `Promise<string \| null>` | A promise that resolves to the value of the header matching the name, otherwise null. |
| Type | Description |
| ------------------------- | --------------------------------------------------------------------------------------- |
| `Promise<string \| null>` | A promise that resolves to the value of the header matching the name, otherwise `null`. |

### Example

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ Contains the request's post body, if any.

### Returns

| Type | Description |
| -------------- | --------------------------------------------------- |
| string \| null | Request's post body, otherwise null if none exists. |
| Type | Description |
| -------------- | ----------------------------------------------------- |
| string \| null | Request's post body, otherwise `null` if none exists. |

### Example

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ Request's post body in a binary form, if any.

### Returns

| Type | Description |
| ------------------- | ------------------------------------------------------------------------ |
| ArrayBuffer \| null | Returns an ArrayBuffer with request's post data or null if no post data. |
| Type | Description |
| ------------------- | ---------------------------------------------------------------------------- |
| ArrayBuffer \| null | Returns an `ArrayBuffer` with request's post data or `null` if no post data. |

### Example

Expand Down

0 comments on commit f02d3fe

Please sign in to comment.