UNPKG

comlink-adapters

Version:

Implementation of comlink adapters for different application platforms

7 lines (6 loc) 231 B
import type { Endpoint } from 'comlink'; import type { WebSocket as LibWebSocket } from 'ws'; export declare function webSocketEndpoint(options: { webSocket: WebSocket | LibWebSocket; messageChannel?: string; }): Endpoint;