Skip to content

Commit

Permalink
Add the CodableFunction
Browse files Browse the repository at this point in the history
  • Loading branch information
david-swift committed Feb 23, 2023
1 parent bd8d85a commit b98f84e
Show file tree
Hide file tree
Showing 15 changed files with 990 additions and 100 deletions.
1 change: 1 addition & 0 deletions Documentation/Reference/ActionKit/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
- [ControlFlow](enums/ControlFlow.md)
- [Function.ExecutionError](enums/Function.ExecutionError.md)
- [FunctionError](enums/FunctionError.md)
- [Wire.CodingKeys](enums/Wire.CodingKeys.md)

## Extensions

Expand Down
42 changes: 42 additions & 0 deletions Documentation/Reference/ActionKit/enums/Wire.CodingKeys.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
**ENUM**

# `Wire.CodingKeys`

```swift
enum CodingKeys: CodingKey
```

The wire's coding keys.

## Cases
### `startNode`

```swift
case startNode
```

The coding key for the start position's node.

### `startPoint`

```swift
case startPoint
```

The coding key for the start position's point.

### `endNode`

```swift
case endNode
```

The coding key for the end position's node.

### `endPoint`

```swift
case endPoint
```

The coding key for the end position's point.
Loading

0 comments on commit b98f84e

Please sign in to comment.