Skip to content

Commit d34523a

Browse files
authored
docs: correct documentation for ServerSentEvent (#1)
1 parent 82998d3 commit d34523a

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

server_sent_event.ts

+5-3
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,11 @@ const DEFAULT_KEEP_ALIVE_INTERVAL = 30_000;
5050

5151
/** Options which can be set when initializing a {@linkcode ServerSentEvent}. */
5252
export interface ServerSentEventInit extends EventInit {
53-
/** Optional arbitrary data to send to the client, data this is a string will
54-
* be sent unmodified, otherwise `JSON.parse()` will be used to serialize the
55-
* value. */
53+
/**
54+
* Optional arbitrary data to send to the client, data this is a string will
55+
* be sent unmodified, otherwise `JSON.stringify()` will be used to serialize
56+
* the value.
57+
*/
5658
data?: unknown;
5759

5860
/** An optional `id` which will be sent with the event and exposed in the

0 commit comments

Comments
 (0)