We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
ServerSentEvent
1 parent 82998d3 commit d34523aCopy full SHA for d34523a
server_sent_event.ts
@@ -50,9 +50,11 @@ const DEFAULT_KEEP_ALIVE_INTERVAL = 30_000;
50
51
/** Options which can be set when initializing a {@linkcode ServerSentEvent}. */
52
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. */
+ /**
+ * Optional arbitrary data to send to the client, data this is a string will
+ * be sent unmodified, otherwise `JSON.stringify()` will be used to serialize
56
+ * the value.
57
+ */
58
data?: unknown;
59
60
/** An optional `id` which will be sent with the event and exposed in the
0 commit comments