UNPKG

solver-sdk

Version:

SDK для интеграции с Code Solver Backend API

8 lines 367 B
import { BaseWebSocketClient } from './base-ws-client'; import { WebSocketNamespace } from '../constants/websocket-namespaces.constants.js'; export class NotificationsWsClient extends BaseWebSocketClient { constructor(baseURL, options = {}) { super(WebSocketNamespace.DEFAULT, baseURL, options); } } //# sourceMappingURL=notifications-ws-client.js.map