@directus/api
Version:
Directus is a real-time API and App dashboard for managing SQL database content
9 lines (8 loc) • 339 B
TypeScript
import { WebSocketMessage } from '@directus/types';
import type { Server as httpServer } from 'http';
import SocketController from './base.js';
export declare class WebSocketController extends SocketController {
constructor(httpServer: httpServer);
private bindEvents;
protected parseMessage(data: string): WebSocketMessage;
}