UNPKG

@solid/community-server

Version:

Community Solid Server: an open and modular implementation of the Solid specifications

13 lines (12 loc) 464 B
import type { WebSocket } from 'ws'; import { AsyncHandler } from 'asynchronous-handlers'; import type { NotificationChannel } from '../NotificationChannel'; export interface WebSocket2023HandlerInput { channel: NotificationChannel; webSocket: WebSocket; } /** * A handler that is called when a valid WebSocketChannel2023 connection has been made. */ export declare abstract class WebSocket2023Handler extends AsyncHandler<WebSocket2023HandlerInput> { }