Skip to content

Commit

Permalink
feat(docs): update docs (#622)
Browse files Browse the repository at this point in the history
feat(docs): update docs

Updates the Wing docs. See details in [workflow run].

[Workflow Run]: https://github.com/winglang/docsite/actions/runs/6272989983

------

*Automatically created via the "update-docs" workflow*
  • Loading branch information
monadabot authored Sep 22, 2023
1 parent 1143773 commit 5dac822
Showing 1 changed file with 43 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2942,6 +2942,49 @@ Year.

---

### JsonEntry <a name="JsonEntry" id="@winglang/sdk.std.JsonEntry"></a>

Json entry representation.

#### Initializer <a name="Initializer" id="@winglang/sdk.std.JsonEntry.Initializer"></a>

```wing
let JsonEntry = JsonEntry{ ... };
```

#### Properties <a name="Properties" id="Properties"></a>

| **Name** | **Type** | **Description** |
| --- | --- | --- |
| <code><a href="#@winglang/sdk.std.JsonEntry.property.key">key</a></code> | <code>str</code> | The entry key. |
| <code><a href="#@winglang/sdk.std.JsonEntry.property.value">value</a></code> | <code><a href="#@winglang/sdk.std.Json">Json</a></code> | The entry value. |

---

##### `key`<sup>Required</sup> <a name="key" id="@winglang/sdk.std.JsonEntry.property.key"></a>

```wing
key: str;
```

- *Type:* str

The entry key.

---

##### `value`<sup>Required</sup> <a name="value" id="@winglang/sdk.std.JsonEntry.property.value"></a>

```wing
value: Json;
```

- *Type:* <a href="#@winglang/sdk.std.Json">Json</a>

The entry value.

---

### JsonStringifyOptions <a name="JsonStringifyOptions" id="@winglang/sdk.std.JsonStringifyOptions"></a>

Options for stringify() method.
Expand Down

1 comment on commit 5dac822

@vercel
Copy link

@vercel vercel bot commented on 5dac822 Sep 22, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.