Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Go to Latest
interface ServerSentEventInit
implements EventInit
Deprecated
Deprecated

(will be removed in 0.209.0) Use ServerSentEventStream from https://deno.land/std/http/server_sent_event_stream.ts instead.

import { type ServerSentEventInit } from "https://deno.land/std@0.208.0/http/unstable_server_sent_event.ts";

Properties

optional
data: unknown

Optional arbitrary data to send to the client, data this is a string will be sent unmodified, otherwise JSON.parse() will be used to serialize the value.

optional
id: number

An optional id which will be sent with the event and exposed in the client EventSource.

optional
replacer: (string | number)[] | ((
this: any,
key: string,
value: any,
) => any)

The replacer is passed to JSON.stringify when converting the data property to a JSON string.

optional
space: string | number

Space is passed to JSON.stringify when converting the data property to a JSON string.