Skip to content

Commit

Permalink
Fix up forgotten types
Browse files Browse the repository at this point in the history
symbols were removed
  • Loading branch information
sebmarkbage committed Apr 5, 2024
1 parent fe95c43 commit c069396
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react-client/src/ReactFlightReplyClient.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,14 +75,14 @@ export type ReactServerValue =
| string
| boolean
| number
| symbol
| null
| void
| bigint
| Iterable<ReactServerValue>
| Array<ReactServerValue>
| Map<ReactServerValue, ReactServerValue>
| Set<ReactServerValue>
| FormData
| Date
| ReactServerObject
| Promise<ReactServerValue>; // Thenable<ReactServerValue>
Expand Down

0 comments on commit c069396

Please sign in to comment.