13 lines
227 B
TypeScript
13 lines
227 B
TypeScript
|
|
/**
|
||
|
|
* SSE (Server-Sent Events) Integration Module
|
||
|
|
*
|
||
|
|
* Provides real-time streaming of Brainy events.
|
||
|
|
* Works in all environments.
|
||
|
|
*/
|
||
|
|
|
||
|
|
export {
|
||
|
|
SSEIntegration,
|
||
|
|
integration,
|
||
|
|
type SSEConfig
|
||
|
|
} from './SSEIntegration.js'
|