Skip to content
This repository was archived by the owner on Oct 17, 2024. It is now read-only.

Commit b98f84e

Browse files
committed
Add the CodableFunction
1 parent bd8d85a commit b98f84e

15 files changed

Lines changed: 990 additions & 100 deletions

File tree

Documentation/Reference/ActionKit/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
- [ControlFlow](enums/ControlFlow.md)
4747
- [Function.ExecutionError](enums/Function.ExecutionError.md)
4848
- [FunctionError](enums/FunctionError.md)
49+
- [Wire.CodingKeys](enums/Wire.CodingKeys.md)
4950

5051
## Extensions
5152

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
**ENUM**
2+
3+
# `Wire.CodingKeys`
4+
5+
```swift
6+
enum CodingKeys: CodingKey
7+
```
8+
9+
The wire's coding keys.
10+
11+
## Cases
12+
### `startNode`
13+
14+
```swift
15+
case startNode
16+
```
17+
18+
The coding key for the start position's node.
19+
20+
### `startPoint`
21+
22+
```swift
23+
case startPoint
24+
```
25+
26+
The coding key for the start position's point.
27+
28+
### `endNode`
29+
30+
```swift
31+
case endNode
32+
```
33+
34+
The coding key for the end position's node.
35+
36+
### `endPoint`
37+
38+
```swift
39+
case endPoint
40+
```
41+
42+
The coding key for the end position's point.

0 commit comments

Comments
 (0)