/** * Represents KoaSSE middleware options * * @export * @interface IKoaSSEOptions */ export interface IKoaSSEOptions { pingInterval?: number; closeEvent?: string; }