Skip to content

Commit

Permalink
Prettify
Browse files Browse the repository at this point in the history
  • Loading branch information
hubertp committed Dec 19, 2024
1 parent e218c94 commit f8cc6ef
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions docs/language-server/protocol-language-server.md
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,12 @@ interface ExpressionUpdate {
An information about the computed value.

```typescript
type ExpressionUpdatePayload = Value | DataflowError | Panic | Pending | PendingInterrupted;
type ExpressionUpdatePayload =
| Value
| DataflowError
| Panic
| Pending
| PendingInterrupted;

/** Indicates that the expression was computed to a value. */
interface Value {
Expand Down Expand Up @@ -428,7 +433,7 @@ interface Pending {

/** Indicates that the computation of the expression has been interrupted
* and will retried */
interface PendingInterrupted { }
interface PendingInterrupted {}

/** Information about warnings associated with the value. */
interface Warnings {
Expand Down

0 comments on commit f8cc6ef

Please sign in to comment.