Files
shop-server/client/src/shared/lib/sse.ts
T
2026-05-22 18:39:10 +05:00

4 lines
145 B
TypeScript

export function createEventStream(token: string): EventSource {
return new EventSource(`/api/sse/stream?token=${encodeURIComponent(token)}`)
}